silverlight keydown event doesn't fire for arrow keys - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T05:27:40Zhttp://stackoverflow.com/feeds/question/222826http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222826/silverlight-keydown-event-doesnt-fire-for-arrow-keys0silverlight keydown event doesn't fire for arrow keysMike Blandford2008-10-21T18:01:02Z2009-01-22T17:10:14Z
<p>I have a canvas inside a scrollview. I attached a keydown event handler to the scrollview. For most keys, the handler gets called. </p>
<p>However, for the arrow keys, the handler does not get called. Instead, the scrollview gets scrolled in the appropriate direction.</p>
<p>I also attached a keyup handler to the scrollview and the keyup does get called for the arrow keys.</p>
<p>Is there any way to get the arrow key down event here?</p>
http://stackoverflow.com/questions/222826/silverlight-keydown-event-doesnt-fire-for-arrow-keys/223323#2233230Answer by Mike Blandford for silverlight keydown event doesn't fire for arrow keysMike Blandford2008-10-21T20:14:44Z2009-01-22T17:06:35Z<p>I found this silly hack to make it work. Setting the scrollview to not be a tabstop keeps it from eating the key events.. but then I had another textbox on the page that all of a sudden ALWAYS had focus because the scrollview didn't anymore. So I fixed that by letting an invisible textbox get focus.</p>
<pre><code>scrollView.IsTabStop = false;
invisibleTextBox.Foreground = new SolidColorBrush(Colors.Transparent);
invisibleTextBox.Background = new SolidColorBrush(Colors.Transparent);
Canvas.SetZIndex(invisibleTextBox, -1000);
invisibleTextBox.KeyDown += new KeyEventHandler(HandleKeyDown);
invisibleTextBox.KeyUp += new KeyEventHandler(HandleKeyUp);
</code></pre>
<p>Edit: I also had to move the text box off the canvas because despite being invisible, its outline still showed up</p>
http://stackoverflow.com/questions/222826/silverlight-keydown-event-doesnt-fire-for-arrow-keys/238885#2388850Answer by George Sealy for silverlight keydown event doesn't fire for arrow keysGeorge Sealy2008-10-27T01:05:35Z2008-10-27T01:05:35Z<p>This is a possible answer - I haven't had a chance to test this. I've had similar trouble in the past though, when a control is consuming the events before you can get at them. There's a few things you may be able to try:</p>
<ol>
<li>Use the PreviewKeyDown event, I think that's what it's called. It may let you get at the event before it's consumed by the control.</li>
<li>Try mblandfo's suggestion, although if you do this you probably ant to wrap the whole thing up in a user control to hide what you're doing from the rest of your code.</li>
<li>Add a key handler to the Canvas object, you may be able to catch the event there, and "bubble" it up through your own event.</li>
</ol>
<p>Except for 1) all of these count as hacks, really, but good luck, I hope one of them works for you!</p>
http://stackoverflow.com/questions/222826/silverlight-keydown-event-doesnt-fire-for-arrow-keys/469999#4699990Answer by Mongo for silverlight keydown event doesn't fire for arrow keysMongo2009-01-22T17:10:14Z2009-01-22T17:10:14Z<p>I have no idea how silverlight works, but it sounds like the arrow keys are pre-binded to some function. Can you just un-bind them?</p>