Hi,
I have a problem using the control RadTabControl. In my case, a gridview is in one of the tabitem.
When we navigate in the cells of the gridview with the keyboard arrows and we arrived at the last cell, another press on the right key change the active tab of the tabcontrol (instead of doing nothing because it's the last cell).
With the source code below, you could reproduce the bug with the following steps :
1. Go to the tab "Tab2" containing the Gridview
2. Select the last column of a row
3. Press right arrows key
4. You could now navigate throught the tabs using arrows :(
How can I prevent this?
The xaml code used is quite simple :
<Window x:Class="TestTabs.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" xmlns:Controls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" Title="GlobalFund" Height="1024" Width="1280"
WindowState="Maximized" WindowStartupLocation="CenterScreen">
<Window.Resources>
<ResourceDictionary Source="MainWindowResources.xaml" />
</Window.Resources>
<telerik:RadTabControl >
<telerik:RadTabItem Header="Tab1" />
<telerik:RadTabItem Header="Tab2" >
<Controls:RadGridView x:Name="SelectedAttributes" AutoGenerateColumns="True" RowIndicatorVisibility="Collapsed">
</Controls:RadGridView>
</telerik:RadTabItem>
<telerik:RadTabItem Header="Tab3">
</telerik:RadTabItem>
<telerik:RadTabItem Header="Tab4" />
</telerik:RadTabControl>
</Window>
I would like to join you the zipped solution but I don't know why but there is no "Attach your file" link in the wpf forum (but it is in silverlight one) :(
An advice?
Thank you for your help....
I have a problem using the control RadTabControl. In my case, a gridview is in one of the tabitem.
When we navigate in the cells of the gridview with the keyboard arrows and we arrived at the last cell, another press on the right key change the active tab of the tabcontrol (instead of doing nothing because it's the last cell).
With the source code below, you could reproduce the bug with the following steps :
1. Go to the tab "Tab2" containing the Gridview
2. Select the last column of a row
3. Press right arrows key
4. You could now navigate throught the tabs using arrows :(
How can I prevent this?
The xaml code used is quite simple :
<Window x:Class="TestTabs.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" xmlns:Controls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" Title="GlobalFund" Height="1024" Width="1280"
WindowState="Maximized" WindowStartupLocation="CenterScreen">
<Window.Resources>
<ResourceDictionary Source="MainWindowResources.xaml" />
</Window.Resources>
<telerik:RadTabControl >
<telerik:RadTabItem Header="Tab1" />
<telerik:RadTabItem Header="Tab2" >
<Controls:RadGridView x:Name="SelectedAttributes" AutoGenerateColumns="True" RowIndicatorVisibility="Collapsed">
</Controls:RadGridView>
</telerik:RadTabItem>
<telerik:RadTabItem Header="Tab3">
</telerik:RadTabItem>
<telerik:RadTabItem Header="Tab4" />
</telerik:RadTabControl>
</Window>
I would like to join you the zipped solution but I don't know why but there is no "Attach your file" link in the wpf forum (but it is in silverlight one) :(
An advice?
Thank you for your help....