6

我有一个 WPFDataGrid用于数据输入,但有些DataGridTextColumn只是信息,我已经设置了它们IsReadOnly="True",因此它们的单元格不会进入编辑模式。但是,他们仍然可以获得我想要避免的焦点。

有没有办法做到这一点?

4

1 回答 1

12

使用单元格样式并设置 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}"/>

    ....
于 2012-04-09T08:11:13.463 回答