在 IronPython 想把 UI 线程和主线程分开,避免被卡死 但是敲好代码后发现代码在 UI 下不起作用?
import wpf
from System.Windows import Application, Window
from threading import Thread
import time
class TiebaClientTools(Window):
def __init__(self):
wpf.LoadComponent(self, 'TiebaClientTools.xaml')
def Button_Click(self, sender, e):
def set_text(num):
time.sleep(num)
self.textbox.Text = "new text"
t = Thread(target=set_text, args=(3,))
t.start()
if __name__ == '__main__':
Application().Run(TiebaClientTools())
1
sujin190 2017-05-18 12:45:14 +08:00
首先,ui 线程还是在主线程下的,而且我记得操作系统对主线程启动为 ui 线程是有特殊处理的,你这样是没办法把 ui 线程放到其他线程的
|