legongju.com
我们一直在努力
2025-01-16 00:56 | 星期四

Winform WndProc与多线程交互

在Winform中,WndProc是窗口过程,负责处理窗口消息。在多线程中,如果需要在其他线程中更新UI控件,需要通过Invoke方法来在UI线程中执行相应的代码。下面是一个示例代码,演示了如何在多线程中更新UI控件:

using System;
using System.Threading;
using System.Windows.Forms;

namespace MultiThreadWinform
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void UpdateLabel(string text)
        {
            if (label1.InvokeRequired)
            {
                label1.Invoke(new Action(UpdateLabel), text);
            }
            else
            {
                label1.Text = text;
            }
        }

        protected override void WndProc(ref Message m)
        {
            const int WM_USER = 0x0400;
            const int WM_UPDATE_LABEL = WM_USER + 1;

            switch (m.Msg)
            {
                case WM_UPDATE_LABEL:
                    UpdateLabel("Update by WndProc");
                    break;
            }

            base.WndProc(ref m);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Thread thread = new Thread(() =>
            {
                Thread.Sleep(2000);
                this.BeginInvoke(new Action(() =>
                {
                    UpdateLabel("Update by thread");
                }));

                this.Invoke(new Action(() =>
                {
                    this.BeginInvoke(new Action(() =>
                    {
                        this.WndProc(ref Message.Create(this.Handle, WM_UPDATE_LABEL, IntPtr.Zero, IntPtr.Zero));
                    }));
                }));
            });
            thread.Start();
        }
    }
}

在上面的示例代码中,通过Override WndProc方法,定义了一个自定义的窗口消息WM_UPDATE_LABEL,当收到这个消息时,会调用UpdateLabel方法更新UI控件。在button1_Click事件中,启动一个新线程,在新线程中通过Invoke和BeginInvoke方法更新UI控件,并向WndProc发送自定义消息来更新UI控件。这样就实现了在多线程中更新UI控件的功能。

未经允许不得转载 » 本文链接:https://www.legongju.com/article/110622.html

相关推荐

  • WndProc在Winform中的消息处理

    WndProc在Winform中的消息处理

    WndProc是窗口过程函数,用于处理Winform中的消息。当窗口收到消息时,WndProc函数会被调用,并根据消息类型执行相应的操作。在Winform中,WndProc通常由窗口类的...

  • 如何在Winform中重写WndProc

    如何在Winform中重写WndProc

    要在Winform中重写WndProc,您需要创建一个继承自Control类的自定义控件,然后重写其WndProc方法。下面是一个简单的示例代码:
    using System;
    using S...

  • Winform中WndProc的作用是什么

    Winform中WndProc的作用是什么

    WndProc(窗口过程)是Windows窗口消息处理函数,它用于处理窗口接收到的各种消息。在Winform应用程序中,WndProc是Form类的一个重要方法,用于处理窗口消息,例...

  • WndProc在Winform中的错误处理机制

    WndProc在Winform中的错误处理机制

    在Winform中,WndProc是窗口消息处理函数,用于处理窗口消息。在WndProc中,通常会处理各种消息,例如鼠标消息、键盘消息、窗口消息等。当处理消息时,可能会出现...

  • 如何利用WndProc实现Winform的拖拽功能

    如何利用WndProc实现Winform的拖拽功能

    在Winform中实现拖拽功能可以通过WndProc方法来处理拖拽事件。以下是一个简单的示例代码,演示如何利用WndProc实现Winform的拖拽功能:
    using System;

  • Winform WndProc的事件响应机制

    Winform WndProc的事件响应机制

    Winform中的WndProc方法是窗口过程方法,用于处理窗口消息。在Winform中,WndProc方法通常用于处理特定的消息事件,例如鼠标点击、键盘按键等事件。
    WndPro...

  • Winform SetChildIndex的性能考量

    Winform SetChildIndex的性能考量

    在Winform中使用SetChildIndex方法可以改变控件在父控件中的Z序顺序,即控件的显示顺序。在考虑SetChildIndex的性能时,主要要注意以下几点: 控件数量:如果父控...

  • 如何通过SetChildIndex实现Winform控件的隐藏与显示

    如何通过SetChildIndex实现Winform控件的隐藏与显示

    通过SetChildIndex方法可以实现Winform控件的隐藏与显示。可以通过以下步骤来实现: 首先,创建一个Winform窗体,并在窗体上添加多个控件,比如按钮、文本框等。...