arrow keys and changing control's focus hang the app - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T04:18:10Zhttp://stackoverflow.com/feeds/question/920481http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/920481/arrow-keys-and-changing-controls-focus-hang-the-app0arrow keys and changing control's focus hang the appsthay2009-05-28T11:50:01Z2009-08-26T13:00:01Z
<p>I have a usercontrol that contains a flowlayoutpanel (topdown flow) with a bunch of radiobuttons. The control exposes a CheckedChanged event that fires whenever one of the radiobuttons's check changed.</p>
<p>My form contains the usercontrol and a textbox. I subscribe the the usercontrol's CheckedChanged event and depending on which radiobutton gets checked, I either disable the textbox or put a focus inside the textbox.</p>
<p>All this works fine with mouseclick when changing the radiobutton's check state. However, this will hang indefinitely when using the arrow keys. I don't understand why the difference.</p>
<p>Please help before I go crazy...</p>
<p>The following are steps to reproduce the behavior I'm seeing:</p>
<ol>
<li>Create a usercontrol and drop a flowlayoupanel control and set its FlowDirection = TopDown. Then add two radiobuttons to the flowlayoutpanel.</li>
<li><p>Provide an event handler in the usercontrol</p>
<p>public event EventHandler CheckedChanged
{
add { radioButton2.CheckedChanged += value; }
remove { radioButton2.CheckedChanged -= value; }
}</p></li>
<li><p>Create a windows form and drop the above user control. Add a textbox and set Enabled to False. Subscribe to the usercontrol's CheckedChanged event as followed</p>
<pre><code> private void userControl11_CheckedChanged(object sender, EventArgs e)
{
textBox1.Select();
}
</code></pre></li>
<li><p>Run. Notice that if you use the mouse to click between the radiobuttons, thing works fine; but it will crash if you use the up/down arrow keys.</p></li>
</ol>
http://stackoverflow.com/questions/920481/arrow-keys-and-changing-controls-focus-hang-the-app/924103#9241030Answer by Anonymous Cow for arrow keys and changing control's focus hang the appAnonymous Cow2009-05-29T02:06:49Z2009-05-29T02:06:49Z<pre><code>public event EventHandler CheckedChanged
{
add {
radioButton2.CheckedChanged += value;
}
remove {
radioButton2.CheckedChanged -= value;
}
}
</code></pre>
<p>Hmm, <code>value</code> is uninitialized? Or am I missing something?</p>