これはGoogleを使用して見つけるのが非常に難しいです。 Application.Current.Dispatcherはどのライブラリですか?私はClassLibraryプロジェクトでそれを見つけることができない、またはそのライブラリをインポートできません。それは基本的にWindowsBase.dll
Application.Current.Dispatcherはどこで罰金を科せられますか?
にApplication.Current
あるSystem.Windows.Threading
名前空間にあります
Application.Current.Dispatcher.BeginInvoke(
DispatcherPriority.Background,
new Action(() => {
this.progressBar.Value = 50;
}));
'Application.Current'はSystem.Windows''です。 –