python 非阻塞线程对话框,非qt(解决qt MessageBox使用线程时候卡死问题)
def msg_okbox(self, strinfo, isYesno=False):
if isYesno:
return win32api.MessageBox(None, strinfo, "提示", win32con.MB_YESNO)
else:
win32api.MessageBox(None, strinfo, "提示", win32con.MB_OK)
return True
本文来自博客园,作者:{archer},转载请注明原文链接:https://www.cnblogs.com/archer-mowei/p/15789621.html