WPF 精修篇 非UI进程后台更新UI进程

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 精修篇 非UI进程后台更新UI进程相关的知识,希望对你有一定的参考价值。

原文:WPF 精修篇 非UI进程后台更新UI进程

技术图片

 

  1. <Grid>
  2. <Grid.RowDefinitions>
  3. <RowDefinition Height="11*"/>
  4. <RowDefinition Height="29*"/>
  5. </Grid.RowDefinitions>
  6. <StackPanel Orientation="Horizontal" Margin="0" VerticalAlignment="Center">
  7. <Label>开始数据</Label>
  8. <TextBox x:Name="beginText" HorizontalAlignment="Left" Height="31" TextWrapping="Wrap" Text="100" VerticalAlignment="Top" Width="100"/>
  9. <Label>结束数据</Label>
  10. <TextBox x:Name="endText" HorizontalAlignment="Left" Height="31" TextWrapping="Wrap" Text="1000000000" VerticalAlignment="Top" Width="100"/>
  11. <Button x:Name="button" Content="开始" HorizontalAlignment="Center" VerticalAlignment="Center" Width="75" Click="Button_Click"/>
  12. </StackPanel>
  13. <StackPanel Margin="0" Grid.Row="1">
  14. <TextBlock x:Name="odd" TextWrapping="Wrap" Text="奇数数量:"/>
  15. <TextBlock x:Name="even" TextWrapping="Wrap" Text="偶数数量:"/>
  16. </StackPanel>
  17. </Grid>

 

  1. private int oddcount =0;
  2. private int evencount =0;
  3. public void Make(int from ,int to)
  4. {
  5. for (int i = from; i < to; i++)
  6. {
  7. if (i % 2 == 0)
  8. {
  9. evencount++;
  10. }
  11. else
  12. {
  13. oddcount++;
  14. }
  15. }
  16. }
  17. private void Button_Click(object sender, RoutedEventArgs e)
  18. {
  19. int from=0;
  20. int to = 0;
  21. if(int.TryParse(beginText.Text,out from)&&int.TryParse(endText.Text,out to) )
  22. {
  23. button.IsEnabled = false;
  24. ThreadPool.QueueUserWorkItem(_ =>
  25. {
  26. Make(from, to);
  27. Dispatcher.BeginInvoke(new Action(() =>
  28. {
  29. odd.Text = "奇数数量:" + oddcount;
  30. even.Text = "偶数数量:" + evencount;
  31. button.IsEnabled = true;
  32. }));
  33. });
  34. }
  35. }

 

  1. Dispatcher.BeginInvoke(new Action(() =>
  2. {
  3. //UI线程
  4. }));

 

以上是关于WPF 精修篇 非UI进程后台更新UI进程的主要内容,如果未能解决你的问题,请参考以下文章

从后台进程打开窗口并在 WPF 中从用户那里获取输入

WPF 精修篇 调用Win32Api

WPF:在后台不断更新 UI

WPF 精修篇 数据绑定 更新通知

一种WPF在后台线程更新UI界面的简便方法

WPF 精修篇 动态资源