程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> .net3.0中跨線程訪問控件

.net3.0中跨線程訪問控件

編輯:關於.NET

這兩天用WPF做一個項目的UI部分時, 發現跨線程地訪問了UI控件, 自然地報異常了. 當時找了半天也沒在控件中找到InvokeRequired屬性和Invoke方法, 郁悶之極.....最後發現在.net3.0中,這有所改變了.

替代InvokeRequired的方法是DispatcherObject.CheckAccess()或DispatcherObject.VerifyAccess()方法,用於指示當前線程是否可以直接訪問控件.

替代Invoke的方法是DispatcherObject.Dispatcher.BeginInvoke(...)方法

參考代碼:

// Uses the DispatcherObject.CheckAccess method to determine if
// the calling thread has access to the thread the UI object is on
private void TryToUpdateButtonCheckAccess(object uiObject)
{
  Button theButton = uiObject as Button;
  
  if (theButton != null)
  {
    // Checking if this thread has access to the object
    if(theButton.CheckAccess())
    {
      // This thread has access so it can update the UI thread
      UpdateButtonUI(theButton);
    }
    else
    {
      // This thread does not have access to the UI thread
      // Pushing update method on the Dispatcher of the UI thread
      theButton.Dispatcher.BeginInvoke(DispatcherPriority.Normal,
        new UpdateUIDelegate(UpdateButtonUI), theButton);
    }
  }
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved