在while循环中使用update()时,Tkinter窗口没有响应

时间:2016-04-24 11:43:51

标签: user-interface while-loop tkinter python-3.5 pyperclip

我是编程的初学者。我这样做是为了爱好并提高我的工作效率。

我正在编写一个程序,只要用户复制一行文本,就会自动将剪贴板粘贴到Tkinter entry

我使用while循环来检测当前剪贴板是否有变化,然后将新复制的剪贴板文本粘贴到Tkinter条目。

当我复制一行新文本时,GUI会完美更新。

然而,GUI没有响应,我无法点击TK entry来输入我想要的内容。

仅供参考我正在使用Python 3.5软件。 提前谢谢。

我的代码:

from tkinter import *
import pyperclip 

#initial placeholder
#----------------------
old_clipboard = ' '  
new_clipboard = ' '

#The GUI
#--------
root = Tk()

textvar = StringVar()

label1 = Label(root, text='Clipboard')
entry1 = Entry(root, textvariable=textvar)

label1.grid(row=0, sticky=E)
entry1.grid(row=0, column=1)

#while loop
#-----------
while(True): #first while loop: keep monitoring for new clipboard
    while(old_clipboard == new_clipboard): #second while loop: check if old_clipboard is equal to the new_clipboard
        new_clipboard = pyperclip.paste() #get the current clipboard 

    print('\nold clipboard pre copy: ' + old_clipboard)    

    old_clipboard = new_clipboard   #assign new_clipboard to old_clipboard 

    print('current clipboard post copy: ' + old_clipboard)      

    print('\ncontinuing the loop...')

    textvar.set(old_clipboard) #set the current clipboard to GUI entry

    root.update()   #update the GUI
root.mainloop()

1 个答案:

答案 0 :(得分:0)

你需要将你的while循环放在def中,然后在一个新的线程中启动它,这样你的gui就不会冻结。 例如:

import threading

def clipboardcheck():
    #Your while loop stuff

class clipboardthread(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
    def run(self):
        clipboardcheck()

clipboardthread.daemon=True #Otherwise you will have issues closing your program

clipboardthread().start()