0
スレッドを使用して、一部の操作後にフォームを閉じたいと思っています。スレッドを使用中にクロススレッドエラーが発生しました
new System.Threading.Thread(s =>
{
Close; }).Start();
スレッドを使用して、一部の操作後にフォームを閉じたいと思っています。スレッドを使用中にクロススレッドエラーが発生しました
new System.Threading.Thread(s =>
{
Close; }).Start();
close(); WPF
Application.Current.Dispatcher.Invoke(() =>
{
// Code to run on the UI thread.
});
ためとWinFormsの
this.BeginInvoke(new MethodInvoker(delegate
{
// Code to run on the UI thread.
});
ため、この中に、この内のステートメント