Declined
Last Updated: 24 Jun 2014 15:33 by ADMIN
ADMIN
Pavel R. Pavlov
Created on: 23 Jun 2014 16:07
Category: TileView
Type: Feature Request
0
ArrowKeys navigation is not working
If a RadTileViewItem hosts several controls (e.g. Buttons, RadioButtons) users should be able to change the focused element using arrow keys.
1 comment
ADMIN
Zarko
Posted on: 24 Jun 2014 15:33
The problem is in the ScrollViewer that is in the RadTileView's template - it handles the arrow keys and that's why the focus doesn't change. To workaround this you could remove the ScrollViewer or use custom ScrollViewer in which you override the OnKeyDown like this:
protected override void OnKeyDown(KeyEventArgs e)
{
    if (e.Key == Key.Left || e.Key == Key.Right ||
        e.Key == Key.Up || e.Key == Key.Down)
        return;

    base.OnKeyDown(e);
}