How to make a button focus in a thread in C# - Stack
2009-5-4 · I need to make a button focus at the end of a thread. The Button.Focus () method does not seem to work. Button1_Click (object sender, EventArgs e) { Thread myThread = new Thread (theThread); myThread.Start (); } theThread () { ... Button2.Focus (); / does not seem to focus the button }
Get Price