我已經在wpf應用程序中使用BackgroundWorker的幫助來處理批量複製操作。我所說的方法DoAction像下面從工作線程工作線程沒有更新按鈕的可見性狀態
private void DoAction()
{
.....................
..................... // some code goes here and works fine
//Enable the Explore link to verify the package
BuildExplorer.Visibility = Visibility.Visible; // here enable the button to visible and gives error
}
如果我在這是說的錯誤年底可見BuildExplorer按鈕知名度「因爲不同的線程擁有它調用線程不能訪問此對象。」我如何更新UI線程狀態?
這是確定。工作進程需要大約5到6分鐘才能完成。那麼如何在UI線程的幫助下找到完成並更新狀態? – Smaug 2013-03-11 06:35:11
@RameshMuthiah:使用BackgroundWorker好友或任何線程級事件 – TalentTuner 2013-03-11 06:41:32
謝謝。它幫助我 – Smaug 2013-03-11 08:34:53