본문 바로가기

C#

c# winform UI스레드, Worker스레드

원칙적으로 c#에서는 UI스레드에서만 UI를 갱신할 수 있지

Worker스레드에서 UI스레드의 클래스들(label box, text box,..) 같은 것들을 갱신할 수 없다.

label box 같은 클래스는 자체적으로 UI스레드에서 온 명령인지 worker 스레드에서 온 명령인지

InvokeRequired 명령어로 체크한다.

만약 labelbox1.InvokeRequired가 true라면, BeginInvoke(new Action(() => label1.Text = data));와 같은

델리게이트를 넘겨 주어서 UI스레드를 갱신할 수 있다.

 

== 코드 ==

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;
 
namespace WindowsFormsApp6
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            UpdateLabelBox(string.Empty);
        }
        private void Run()
        {
            Thread.Sleep(3000);
            string dbData = "Query Result";
            UpdateLabelBox(dbData);
        }
 
        private void UpdateLabelBox(string data)
        {
            if (label1.InvokeRequired)
            {
                label1.BeginInvoke(new Action(() => label1.Text = data));
            }
            else
            {
                label1.Text = "Running in Ui thread";
            }
        }
 
        private void button2_Click(object sender, EventArgs e)
        {
            Thread worker = new Thread(Run);
            worker.Start();
        }
    }
}
 
cs