If I type a letter it goes to the event, but not the arrow keys.
KeyUp does catch the arrow keys, so that's what I'm going to use
I'm basically doing this to put things in edit mode on the arrow up and arrow down:
KeyUp does catch the arrow keys, so that's what I'm going to use
I'm basically doing this to put things in edit mode on the arrow up and arrow down:
private
void
handleArrows(
object
sender, KeyEventArgs e)
{
RadGridView rgv = (RadGridView)sender;
if
(e.Key == Key.Down)
{
RadGridViewCommands.MoveDown.Execute(
null
);
rgv.BeginEdit();
e.Handled =
true
;
}
if
(e.Key == Key.Up)
{
RadGridViewCommands.MoveUp.Execute(
null
);
rgv.BeginEdit();
e.Handled =
true
;
}
}