阻止选项卡进入WPF DataGrid

时间:2010-05-21 16:31:05

标签: wpf datagrid wpfdatagrid

我想在WPF中阻止标签到只读的Microsoft数据网格。 我将IsTabStop设置为False,但我仍然可以选择进入数据网格。 有什么想法吗?

<WpfToolkit:DataGrid
    IsReadOnly="True"
    IsTabStop="False"
    ItemsSource="{Binding Path=GridData, Mode=OneWay}" >
</WpfToolkit:DataGrid>

1 个答案:

答案 0 :(得分:9)

如果您将此行添加到datagrid xaml:

,这会有所帮助

KeyboardNavigation.TabNavigation = “无”