WPF-基础-02 DispatcherObject类

csharp 复制代码
   public abstract class DispatcherObject
{
    protected DispatcherObject();
    public Dispatcher Dispatcher { get; }
    public bool CheckAccess();
    public void VerifyAccess();
}

WPF中使用Dispatcher更新界面

csharp 复制代码
xaml
    <Grid>
        <TextBlock x:Name="tbkShow" HorizontalAlignment="Center" Margin="0,120,0,0" VerticalAlignment="Top"/>
        <Button x:Name="btnLogin" Click="btnLogin_Click" Content="登录" Margin="0,88,0,0" VerticalAlignment="Top" Width="75" Height="23"/>
    </Grid>
C#
形式一 (Thread )
        private void btnLogin_Click(object sender, RoutedEventArgs e)
        {
            Thread thread = new Thread(Login);
            thread.Start();
        }
        private void Login() 
        {
            for (int i = 0; i < 30; i++)
            {
                Thread.Sleep(100);
                //利用Dispatcher更新主界面控件属性
                this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate {
                    btnLogin.Content = i + "s";
                    if (i == 29)
                        btnLogin.IsEnabled = true;
                });
            }
        }
形式二 (Task.Run)       
        private void btnLogin_Click(object sender, RoutedEventArgs e)
        {
            Task.Run(() =>
            {
                // 需要更新UI的操作
                Dispatcher.Invoke(() =>
                {
                    // 在UI线程上更新UI元素
                    btnLogin.Content = "点击登录后";
                });

            });
        }  
形式三 (Task.Factory)          
        private void btnLogin_Click(object sender, RoutedEventArgs e)
        {
            Task.Factory.StartNew(() =>
            {
                Task.Delay(100).Wait();

                Dispatcher.Invoke(() =>
                {
                    btnLogin.Content = "登录成功";
                });
            });
        }
形式四 (参数行为new Action())        
        private void btnLogin_Click(object sender, RoutedEventArgs e)
        {
            Thread thread = new Thread(Login);
            thread.Start();
        }
        private void Login() 
        {

            //利用Dispatcher更新主界面控件属性
            //Application.Current.Dispatcher.BeginInvoke()
            Dispatcher.BeginInvoke(DispatcherPriority.Normal,

                new Action(() =>
                {
                    Thread.Sleep(100);
                    this.btnLogin.Content = DateTime.Now.ToString();

                }));
        } 
形式五  (BeginInvoke 返回DispatcherOperation执行Completed)        
        private void btnLogin_Click(object sender, RoutedEventArgs e)
        {
          Thread thread = new Thread(Login);
          thread.Start();
        }
        private void Login() 
        {

            //利用Dispatcher更新主界面控件属性
            //Application.Current.Dispatcher.BeginInvoke()
           var task=  Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Normal,

                new Action(() =>
                {
                    Thread.Sleep(100);
                    this.btnLogin.Content = DateTime.Now.ToString();

            }));
            task.Completed += new EventHandler(task_Completed);
        }
        private void task_Completed(object sender, EventArgs e)
        {
            MessageBox.Show("任务已经完成");
        }
        private void Login() 
        {
         double i = 0d;
         for (i = 0d; i < 800d; i++)
          {
          Task.Delay(5).Wait();
          Action act = () => rect.Width++;
          Dispatcher.BeginInvoke(act, DispatcherPriority.Background);
         }
        }
}             
csharp 复制代码
DispatcherPriority枚举值
Invalid = -1,
Inactive = 0,
SystemIdle = 1,
ApplicationIdle = 2,
ContextIdle = 3,
Background = 4,
Input = 5,
Loaded = 6,
Render = 7,
DataBind = 8,
Normal = 9, 以正常优先级将工作项目调度到 UI 线程。这是调度大多数应用程序工作项目时的优先级
Send = 10 以最高优先级将工作项目调度到 UI 线程
public sealed class Dispatcher
{
//同步
public void Invoke(Action callback);
public void Invoke(Action callback, DispatcherPriority priority);
public void Invoke(Action callback, DispatcherPriority priority, CancellationToken cancellationToken);
public void Invoke(Action callback, DispatcherPriority priority, CancellationToken cancellationToken, TimeSpan timeout);
public object Invoke(Delegate method, params object[] args);
//异步
public DispatcherOperation BeginInvoke(Delegate method, params object[] args);
public DispatcherOperation BeginInvoke(Delegate method, DispatcherPriority priority, params object[] args);
public DispatcherOperation BeginInvoke(DispatcherPriority priority, Delegate method);
public DispatcherOperation BeginInvoke(DispatcherPriority priority, Delegate method, object arg);
public DispatcherOperation BeginInvoke(DispatcherPriority priority, Delegate method, object arg, params object[] args);
}
相关推荐
晚安苏州10 小时前
WPF DataTemplate 数据模板
wpf
甜甜不吃芥末1 天前
WPF依赖属性详解
wpf
Hat_man_1 天前
WPF制作图片闪烁的自定义控件
wpf
晚安苏州3 天前
WPF Binding 绑定
wpf·wpf binding·wpf 绑定
wangnaisheng3 天前
【WPF】RenderTargetBitmap的使用
wpf
dotent·3 天前
WPF 完美解决改变指示灯的颜色
wpf
orangapple5 天前
WPF 用Vlc.DotNet.Wpf实现视频播放、停止、暂停功能
wpf·音视频
ysdysyn5 天前
wpf mvvm 数据绑定数据(按钮文字表头都可以),根据长度进行换行,并把换行的文字居中
c#·wpf·mvvm
orangapple5 天前
WPF 使用LibVLCSharp.WPF实现视频播放、停止、暂停功能
wpf
晚安苏州5 天前
WPF ControlTemplate 控件模板
wpf