특정 애플리케이션에서 클립보드에 있는 콘텐츠를 복사해야 한다고 가정해 보겠습니다. clipboard_get()을 사용하여 클립보드에 액세스할 수 있습니다. .
클립보드에서 텍스트를 복사한 후 캐시 메모리에 상주하여 프로그램을 디버그하고 프레임에 텍스트를 표시한 다음 클립보드에서 복사된 텍스트를 볼 수 있습니다.
먼저 get을 사용하여 소스에서 복사한 문자 또는 텍스트를 저장할 창을 만듭니다. 방법. 실행이 완료되면 tkinter에서 "withdraw" 메소드를 사용하여 창을 숨길 수 있습니다. 창을 없애는 데 도움이 됩니다.
예
#Import the tkinter library from tkinter import * #Create an instance of tkinter canvas by executing it win = Tk() win.geometry("600x200") #Get the data from the clipboard cliptext = win.clipboard_get() #Create the label for the clipboard lab=Label(win, text = cliptext) lab.pack() #Keep Running the window win.mainloop()
출력
위의 코드 조각을 실행하면 클립보드에서 콘텐츠가 복사되어 창에 표시됩니다.
창을 피하기 위해 "withdraw" 메소드를 사용할 수 있습니다.
from tkinter import * win = Tk() win.withdraw() number = win.clipboard_get()