Hello
I would like to know if is possible to navigate through my items using the arrow keys the same way as if I am using the framework listbox.
When you click on the arrow DOWN, the framework Listbox selects the item below the selectedItem, but when we do the same thing with the RadListBox, the selection goes to the item at the right of the selectedItem.
Here is the code for the framework Listbox:
And here for the RadListBox:
I would like to know if is possible to navigate through my items using the arrow keys the same way as if I am using the framework listbox.
When you click on the arrow DOWN, the framework Listbox selects the item below the selectedItem, but when we do the same thing with the RadListBox, the selection goes to the item at the right of the selectedItem.
Here is the code for the framework Listbox:
<
ListBox
Width
=
"700"
Height
=
"700"
ItemsSource
=
"{Binding YourSource}"
>
<
ListBox.ItemsPanel
>
<
ItemsPanelTemplate
>
<
UniformGrid
Width
=
"{Binding ActualWidth, RelativeSource={RelativeSource AncestorType={x:Type ScrollContentPresenter}, Mode=FindAncestor}}"
Columns
=
"3"
/>
</
ItemsPanelTemplate
>
</
ListBox.ItemsPanel
>
</
ListBox
>
And here for the RadListBox:
<
telerik:RadListBox
Width
=
"700"
Height
=
"700"
ItemsSource
=
"{Binding YourSource}"
>
<
telerik:RadListBox.ItemsPanel
>
<
ItemsPanelTemplate
>
<
UniformGrid
Width
=
"{Binding ActualWidth, RelativeSource={RelativeSource AncestorType={x:Type ScrollContentPresenter}, Mode=FindAncestor}}"
Columns
=
"3"
/>
</
ItemsPanelTemplate
>
</
telerik:RadListBox.ItemsPanel
>
</
telerik:RadListBox
>