我是 python 新手,我需要一个消息框。我使用了 ctypes,但它会在所有其他程序下打开消息框。我怎样才能使它成为所有程序之上?
import ctypes
def run(x=0):
STOP = False
x += 5
MessageBox = ctypes.windll.user32.MessageBoxA
reply = MessageBox(None, 'text', 'title', 1)
if reply == 1 and not STOP:
threading.Timer(3, run).start()
else:
STOP = True;