WPF刷新界面相关方法

开发 开发工具
WPF刷新界面对于初学者来说是比较难掌握的一个知识。在这里我们将会以一个代码范例来为大家详细介绍相关使用方法。

WPF刷新界面的应用技巧是一个非常常用的功能。在实际操作中我们需要对其进行非常熟练的操作。希望这篇文章总介绍的内容可以帮助大家提高对WPF的理解程度。#t#

WPF刷新界面应用代码示例:

  1. /// <summary> 
  2. /// App.xaml 的交互逻辑  
  3. /// </summary> 
  4. public partial class App : Application  
  5. {  
  6. private static DispatcherOperat
    ionCallback 
    exitFrameCallback = 
    new DispatcherOperationCallback(ExitFrame);  
  7. public static void DoEvents()  
  8. {  
  9. DispatcherFrame nestedFrame = 
    new DispatcherFrame();  
  10. DispatcherOperation exitOperation = 
    Dispatcher.CurrentDispatcher.BeginInvoke
    (DispatcherPriority.Background, 
    exitFrameCallback, nestedFrame);  
  11. Dispatcher.PushFrame(nestedFrame);  
  12. if (exitOperation.Status != 
    DispatcherOperationStatus.Completed)  
  13. {  
  14. exitOperation.Abort();  
  15. }  
  16. }  
  17. private static Object ExitFrame
    (Object state)  
  18. {  
  19. DispatcherFrame frame = state as 
    DispatcherFrame;  
  20. frame.Continue = false;  
  21. return null;  
  22. }  

WPF刷新界面使用方法就介绍到这里。

责任编辑:曹凯 来源: 博客园
相关推荐

2024-05-22 08:35:41

2009-08-31 09:13:00

UbuntuNetBook Rem界面

2012-07-17 09:53:02

2009-07-10 08:50:35

微软Windows 7界面

2010-04-15 09:47:02

2012-06-18 10:57:25

Windows 8操作系统

2011-12-29 10:13:48

FirefoxAndroid版

2017-05-12 09:29:42

操作系统Windows 10 win 10 NEON

2010-08-05 09:17:17

MeeGo界面

2011-04-14 13:30:55

webOS 3.0webOS惠普

2012-05-11 16:11:50

Visual Stud

2009-12-23 20:45:09

Firefox全新界面

2023-05-04 06:31:45

OneDrive微软

2009-02-12 15:18:59

2009-12-28 17:48:01

WPF界面布局

2011-08-18 09:30:39

金山Kingsoft Of

2012-08-15 09:26:30

SkyDriveOutlook.com

2012-03-26 11:00:10

Visual Stud微软开发

2023-06-08 15:20:35

Windows 11谷歌

2011-05-11 09:24:27

Symbian^3Symbian诺基亚
点赞
收藏

51CTO技术栈公众号