2014年2月26日 星期三
2014年2月24日 星期一
多線程操作UI
- //測試的窗體
- public class TestForm : Form
- {
- //創建一個Button對象
- private Button button = new Button();
- //構造函數
- public TestForm()
- {
- //設置按鈕的屬性
- button.Size = new Size(150, 100); //大小
- button.Click += Button1_Clicked; //註冊事件
- button.Text = "點擊開始測試"; //設置顯示文本
- this.Controls.Add(button); //添加到窗體上
- this.Text = "多線程範例"; //設置窗體的標題欄文本
- }
- //按鈕的Click事件響應方法
- public void Button1_Clicked(object sender, EventArgs e)
- {
- //啟動一個線程
- new Thread(ThreadProc).Start();
- }
- //線程函數
- public void ThreadProc()
- {
- //this.Invoke就是跨線程訪問ui的方法,也是本文的範例
- //首先invoke一個匿名委託,將button對象禁用
- this.Invoke((EventHandler)delegate
- {
- button.Enabled = false;
- });
- //記錄一個時間戳,以演示倒計時效果
- int tick = Environment.TickCount;
- while (Environment.TickCount - tick < 1000)
- {
- //跨線程調用更新窗體上控件的屬性,這裡是更新這個按鈕對象的Text屬性
- this.Invoke((EventHandler)delegate
- {
- button.Text = (1000 - Environment.TickCount + tick).ToString() + "微秒後開始更新";
- });
- //做一個延遲,避免太快了,視覺效果不好。
- Thread.Sleep(100);
- }
- //演示,10次數字遞增顯示
- for (int i = 0; i < 10; i++)
- {
- this.Invoke((EventHandler)delegate
- {
- button.Text = i.ToString();
- });
- Thread.Sleep(200);
- }
- //雖然不是循環內,請不要忘記,你的調用依然在輔助線程中,所以,還是需要invoke的。
- //還原狀態,設置按鈕的文本為初始狀態,設置按鈕可用。
- this.Invoke((EventHandler)delegate
- {
- button.Text = "點擊開始測試";
- button.Enabled = true;
- });
- }
- }
用 Invoke 呼叫跨執行緒的方法
01 | using System; |
02 | using System.Collections.Generic; |
03 | using System.ComponentModel; |
04 | using System.Data; |
05 | using System.Drawing; |
06 | using System.Text; |
07 | using System.Windows.Forms; |
08 | using System.Threading; |
09 |
10 | namespace Invoke |
11 | { |
12 | public partial class Form1 : Form |
13 | { |
14 | public Form1() |
15 | { |
16 | InitializeComponent(); |
17 | } |
18 |
19 | private void Form1_Load( object sender, EventArgs e) |
20 | { |
21 | Thread NewThread = new Thread( new ThreadStart(NewThreadMethod)); //建立測試用的執行緒 |
22 | NewThread.Start(); //啟動測試用的執行緒 |
23 | } |
24 |
25 | //原執行緒,被其它執行緒呼叫 |
26 | static void Method( int Param) |
27 | { |
28 | int i = Param; |
29 | } |
30 |
31 | //宣告一個委派,定義參數 |
32 | delegate void MyDelegate( int Param); |
33 |
34 | //實作委派,指向員執行緒中被呼叫的Method |
35 | MyDelegate ShowData = new MyDelegate(Method); |
36 |
37 | //測試用的執行緒,在此呼叫原執行緒 |
38 | void NewThreadMethod() |
39 | { |
40 | int i = 0; |
41 | while ( true ) |
42 | { |
43 | this .Invoke( this .ShowData, i); |
44 | Thread.Sleep(2000); |
45 | } |
46 | } |
47 | } |
48 | } |
訂閱:
文章 (Atom)