我想在WPF中阻止标签到只读的Microsoft数据网格。 我将IsTabStop设置为False,但我仍然可以选择进入数据网格。 有什么想法吗?
<WpfToolkit:DataGrid
IsReadOnly="True"
IsTabStop="False"
ItemsSource="{Binding Path=GridData, Mode=OneWay}" >
</WpfToolkit:DataGrid>
答案 0 :(得分:9)
如果您将此行添加到datagrid xaml:
,这会有所帮助KeyboardNavigation.TabNavigation = “无”