我有一个 WPFDataGrid
用于数据输入,但有些DataGridTextColumn
只是信息,我已经设置了它们IsReadOnly="True"
,因此它们的单元格不会进入编辑模式。但是,他们仍然可以获得我想要避免的焦点。
有没有办法做到这一点?
我有一个 WPFDataGrid
用于数据输入,但有些DataGridTextColumn
只是信息,我已经设置了它们IsReadOnly="True"
,因此它们的单元格不会进入编辑模式。但是,他们仍然可以获得我想要避免的焦点。
有没有办法做到这一点?
使用单元格样式并设置 Focusable=False。
<Page.Resources>
<Style x:Key="CellStyle" TargetType="{x:Type DataGridCell}">
<Setter Property="Focusable" Value="False"/>
</Style>
</Page.Resources>
<DataGrid ItemsSource="{Binding Items}" ...>
<DataGrid.Columns>
<DataGridTextColumn
CellStyle="{StaticResource CellStyle}"
IsReadOnly="True"
Header="Name" Binding="{Binding Name}"/>
....