关于代码的一些描述:
- 这是我的程序的一部分,我只把相关的行放在这里
- 我希望这些代码能做的,是注意我的剪贴板。如果我将“ http:xxx ”复制到我的剪贴板,它会显示一个弹出窗口。如果剪贴板的内容没有改变,则窗口不会' t 再次显示
- 运行时可以正常弹窗一次,但是当我将另一个以'http: '开头的字符串复制到剪贴板时就不会再弹了
- 我在
after
方法中尝试了一些不同的间隔值,结果相同。
代码:
from tkinter import *
import os
import tkinter.messagebox as messagebox
import threading
import re
def watch_clipboard(tk,pipeout):
content = ''
last_content = ''
while True:
try:
content = tk.clipboard_get()
except TclError:
pass
result = re.match('http:',content)
if content != last_content:
if result:
last_content = content
message = 'show'.encode()
os.write(pipeout,message)
class GUI:
def __init__(self):
self.tk = Tk()
self.tk.resizable(0, 0)
self.tk.title('watch clipboard')
pipein,pipeout = os.pipe()
threading.Thread(target=watch_clipboard,daemon=True,args=(self.tk,pipeout)).start()
self.tk.after(5000,lambda:self.clipboard_confirm(pipein))
self.tk.mainloop()
def clipboard_confirm(self,pipein):
message = os.read(pipein,16)
if message == b'show':
self.tk.clipboard_clear()
messagebox.askokcancel('', 'add this in?', default='ok')
self.tk.after(5000,clipboard_confirm(pipein)) #add this
if __name__ == '__main__':
gui = GUI()
编辑:A。罗达斯的代码有效。似乎是多线程导致了问题。深层原因仍然未知。