コード例 #1
0
ファイル: App.xaml.cs プロジェクト: mkandroid15/Samples
		private void QueueThreadProc( object dispatcher )
		{
			// start window in new thread
			dispatcherQueueForm = new DispatcherQueue((System.Windows.Threading.Dispatcher)dispatcher);
			dispatcherQueueForm.Show();
			// a dispatcher is automatically created by WPF
			System.Windows.Threading.Dispatcher.Run();
		}