C# 如何跨线程对Window窗体控件进行安全访问 (第二版)?

Posted 我不是代码教父

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 如何跨线程对Window窗体控件进行安全访问 (第二版)?相关的知识,希望对你有一定的参考价值。

[简介]
常用网名: 猪头三
出生日期: 1981.XX.XX
个人网站: https://www.x86asm.org
QQ交流: 643439947
编程生涯: 2001年~至今[共17年]
职业生涯: 15年
开发语言: C/C++、80x86ASM、php、Perl、Objective-C、Object Pascal、C#、Python、javascript
开发工具: Visual Studio、Delphi、XCode、Eclipse、android Stuido
技能种类: 逆向 驱动 磁盘 文件
研发领域: Windows应用软件安全/Windows系统内核安全/Windows系统磁盘数据安全
项目经历: 磁盘性能优化/文件系统数据恢复/文件信息采集/敏感文件监测跟踪/网络安全检测

[序言]
2016年发表过一篇类似的文章, 但由于以前对C#理解不深, 写出来的代码不是很好. 见过2年的洗礼, 积累了大量的C#开发经验. 下面重新修正我的第一篇文章: C# Winform项目中多线程环境下, 如何跨线程对Window窗体控件进行安全访问?

[源码]

using System;
using System.Threading;
using System.Threading.Tasks;
using AppKit;
using Foundation;

namespace ThreadDemo

    public partial class ViewController : NSViewController
    

        private TaskScheduler mpr_ts_UIContext;
        private TaskFactory mpr_tf_UIContext;
        private SynchronizationContext mpr_sc_UIContext;

        public ViewController(IntPtr handle) : base(handle)
        
        

        public override void ViewDidLoad()
        
            base.ViewDidLoad();

            // Do any additional setup after loading the view.
            mpr_ts_UIContext = TaskScheduler.FromCurrentSynchronizationContext();
            mpr_tf_UIContext = new TaskFactory(TaskScheduler.FromCurrentSynchronizationContext());
            mpr_sc_UIContext = SynchronizationContext.Current;
        

        public override NSObject RepresentedObject
        
            get
            
                return base.RepresentedObject;
            
            set
            
                base.RepresentedObject = value;
                // Update the view, if already loaded.
            
        

        // 演示1
        async partial void BnClick_Demo_A(Foundation.NSObject sender)
        
  
            await Task.Run( async () => 

                for (int int_Index = 0; int_Index < 5000; int_Index++)
                

                    // 这里做你想做的事情


                    // 界面更新
                    await Task.Factory.StartNew(() => 
                        mpr_TF_Show.StringValue = String.Format("计数器: 0/5000",
                                                                int_Index);
                    , CancellationToken.None, TaskCreationOptions.None, mpr_ts_UIContext);
                

            );

        // End BnClick_Demo_A()


        // 演示2
        async partial void BnClick_Demo_B(Foundation.NSObject sender)
        
        
            await Task.Run(async () =>
            
            
                for (int int_Index = 0; int_Index < 5000; int_Index++)
                
                    // 这里做你想做的事情


                    // 界面更新
                    await mpr_tf_UIContext.StartNew(() => 
                        mpr_TF_Show.StringValue = String.Format("计数器: 0/5000",
                                                                int_Index);
                    );
                
            
            );

        // End BnClick_Demo_B()


        // 演示3
        async partial void BnClick_Demo_C(Foundation.NSObject sender)
        

            await Task.Run(() =>
            

                for (int int_Index = 0; int_Index < 5000; int_Index++)
                
                    // 这里做你想做的事情


                    // 界面更新
                    mpr_sc_UIContext.Send((int_param_Index) => 
                        mpr_TF_Show.StringValue = String.Format("计数器: 0/5000",
                                                                int_param_Index);
                    , int_Index);
                

            );

        // End BnClick_Demo_C()


    


以上是关于C# 如何跨线程对Window窗体控件进行安全访问 (第二版)?的主要内容,如果未能解决你的问题,请参考以下文章

c#如何跨线程调用窗体控件

c#中如何跨线程调用windows控件

如何跨线程调用Windows窗体控件

实现Winform 跨线程安全访问UI控件

winform的窗体控件可以用线程直接调用吗

C# winform 跨线程更改窗体控件的属性