スレッドの最後にボタンをフォーカスする必要があります。 Button.Focus()メソッドが機能していないようです。 exmapleためC#のスレッドでボタンフォーカスを行う方法
:私はのButton1 ClickでButton2.Focus()を置けば
Button1_Click(object sender, EventArgs e)
{
Thread myThread = new Thread(theThread);
myThread.Start();
}
theThread()
{
...
Button2.Focus(); // does not seem to focus the button
}
しかし、それは焦点を当てますが、私のプロジェクトのために私はそれを行うことはできません。