zoukankan      html  css  js  c++  java
  • WPF 多线程




    写法3
           private void button1_Click(object senderRoutedEventArgs e)
           {
                System.Threading.Thread thread1 = new System.Threading.Thread(() =>
                {
                   //过程
                });
                thread1.Start();
           }

    使用控件时会引起 其他信息: 由于其他线程拥有此对象,因此调用线程无法对其进行访问。

    写法2  一般采用这种写法

            private void DoWork()
            {
                for (int i = 0; i < 500; i++)
                {
                    this.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normalnew Action(delegate()
                    {
                        //在这里执行代码
                        button1.Content = Convert.ToString(i);
                    }));
                    System.Threading.Thread.Sleep(10);
                }
            }
     
            private void Button_Click(object senderRoutedEventArgs e)
            {
                System.Threading.Thread thread1 = new System.Threading.Thread(new System.Threading.ThreadStart(DoWork));
                thread1.Start();
            }



    写法1 


            private void Button_Click_1(object senderRoutedEventArgs e)
            {
                System.Threading.Thread thread1 = new System.Threading.Thread(
                    new System.Threading.ThreadStart(
                                delegate()
                                {
                                    for (int i = 0; i < 500; i++)
                                    {
                                        this.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normalnew Action(delegate()
                                            {
                                                //your code herer...
                                                button1.Content = Convert.ToString(i);
                                            }));
                                        System.Threading.Thread.Sleep(10);
                                    }
                                }
                    ));
                thread1.Start();
            }



    使用控件时会引起 其他信息: 由于其他线程拥有此对象,因此调用线程无法对其进行访问。







    附件列表

    • 相关阅读:
      html5基础---canvas
      html5基础---h5特性
      JS常用知识点(一)
      微信小程序开发(一)基础知识学习
      关于C# winform唤起本地已安装应用程序(测试win10,win7可用)
      js原型链结构理解
      JS闭包应用场景之函数回调(含函数的调用个人理解)
      (十三)MySQL锁机制
      (十一)MVCC-多版本并发控制机制(转)
      jvm014-垃圾回收器
    • 原文地址:https://www.cnblogs.com/xe2011/p/3761572.html
    Copyright © 2011-2022 走看看