c#多線程訪問介面

來源:互聯網
上載者:User
C#2005後不再支援多線程直接存取介面的控制項(介面建立線程與訪問線程不是同一個線程),不過可以使用delegate來解決:

1. 聲明一個delegate和定義一個delegate的實現函數
view plaincopy to clipboardPRint?
delegate void ShowProgressDelegate(int newPos);
private void ShowProgress(int newPos)
{
// 判斷是否線上程中訪問
if (!_progressBar.InvokeRequired)
{
// 不是的話直接操作控制項
_progressBar.Value = newPos;
}
else
{
// 是的話啟用delegate訪問
ShowProgressDelegate showProgress = new ShowProgressDelegate(ShowProgress);
// 如使用Invoke會等到函數調用結束,而BeginInvoke不會等待直接往後走
this.BeginInvoke(showProgress, new object[] { newPos });
}
}
delegate void ShowProgressDelegate(int newPos);
private void ShowProgress(int newPos)
{
// 判斷是否線上程中訪問
if (!_progressBar.InvokeRequired)
{
// 不是的話直接操作控制項
_progressBar.Value = newPos;
}
else
{
// 是的話啟用delegate訪問
ShowProgressDelegate showProgress = new ShowProgressDelegate(ShowProgress);
// 如使用Invoke會等到函數調用結束,而BeginInvoke不會等待直接往後走
this.BeginInvoke(showProgress, new object[] { newPos });
}
}

2. 定義線程函數(在另一個線程中可以對介面控制項進讀操作)
view plaincopy to clipboardprint?
private void ProgressStart()
{
while (true)
{
int newPos = _progressBar.Value + 10;
if (newPos > _progressBar.Maximum)
{
newPos = _progressBar.Minimum;
}
Trace.WriteLine(string.Format("Pos: {0}", newPos));
// 這裡直接調用方法,由其內部自動判斷是否啟用delegate
ShowProgress(newPos);
Thread.Sleep(100);
}
}
private void ProgressStart()
{
while (true)
{
int newPos = _progressBar.Value + 10;
if (newPos > _progressBar.Maximum)
{
newPos = _progressBar.Minimum;
}
Trace.WriteLine(string.Format("Pos: {0}", newPos));
// 這裡直接調用方法,由其內部自動判斷是否啟用delegate
ShowProgress(newPos);
Thread.Sleep(100);
}
}

3. 線程的啟動和終止
view plaincopy to clipboardprint?
private Thread _progressThread;
_progressThread = new Thread(new ThreadStart(ProgressStart));
// 可選,功用:即使該線程不結束,進程也可以結束
_progressThread.IsBackground = true;
_progressThread.Start();
_progressThread.Abort();
// 可選,功用:等到線程結束才繼續
_progressThread.Join();
_progressThread = null;

以上就是c#多線程訪問介面的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.