我有这段代码:
void wait(int ms)
{
System.Threading.Thread.Sleep(ms);
}
private void button1_Click(object sender, RoutedEventArgs e)
{
info.Text = "step 1";
wait(1000);
info.Text = "step 2";
wait(1000);
info.Text = "step 3";
wait(1000);
info.Text = "step 4";
wait(1000);
}
问题是textbox.text在整个void button1_Click完成后更新。它没有在AIR上更新:(
请,怎么做?
答案 0 :(得分:9)
就这样做。
private void button1_Click(object sender, RoutedEventArgs e)
{
ThreadPool.QueueUserWorkItem((o) =>
{
Dispatcher.Invoke((Action) (() => info.Text = "step 1"));
wait(1000);
Dispatcher.Invoke((Action) (() => info.Text = "step 2"));
wait(1000);
Dispatcher.Invoke((Action) (() => info.Text = "step 3"));
wait(1000);
Dispatcher.Invoke((Action) (() => info.Text = "step 4"));
wait(1000);
});
}
答案 1 :(得分:3)
在button1_Click
方法返回之前,GuI线程不会刷新。这就是为什么你只看到最后一个值。您必须将长方法放入异步调用或使用线程。
答案 2 :(得分:0)
度量/排列(以及渲染)异步发生,因此如果您想强制屏幕更新,则需要调用UpdateLayout。
答案 3 :(得分:-1)
如果您尝试使用DispatcherFrame来模拟DoEvents将实现的形式,那该怎么办:
您可能需要包含System.Security.Permissions和System.Windows.Threading。之后,在每次睡眠之后调用DoEvents()并获得所需的结果。
[SecurityPermissionAttribute(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)]
public void DoEvents()
{
DispatcherFrame frame = new DispatcherFrame();
Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Background,
new DispatcherOperationCallback(ExitFrame), frame);
Dispatcher.PushFrame(frame);
}
public object ExitFrame(object f)
{
((DispatcherFrame)f).Continue = false;
return null;
}
链接到MSDN文章:http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatcher.pushframe.aspx