wpf调用外部线程操做ui方法

private void PageLoad( object o) { _thisWindow = o as Window; Thread t = new Thread( delegate () { _thisWindow.Dispatcher.Invoke( new Action( delegate () { PageLoad(); })); }); t.Start(); } private vo
相关文章
相关标签/搜索