应用ElementStyle时,DataGridCheckBoxColumn失去IsReadOnly状态

时间:2016-06-02 06:46:12

标签: c# wpf datagrid readonly elementstyle

我需要垂直居中DataGridCheckBoxColumn。由于我在DataGridCheckBoxColumn内未找到属性,因此我应用了ElementStyle。但是,应用此样式后,我的CheckBox会再次变为可检查,但ReadOnly中的DataGrid设置为DatagridReadOnlyDataGridCheckBoxColumn) ,以及CheckBox本身。

如何创建一个保持ReadOnly状态的垂直居中的<DataGrid IsReadOnly="True"> <DataGrid.Columns> <DataGridCheckBoxColumn Header="Test" IsReadOnly="True" Binding="{Binding MyBinding}"> <DataGridCheckBoxColumn.ElementStyle> <Style> <Setter Property="FrameworkElement.Margin" Value="0,1,0,0" /> <Setter Property="FrameworkElement.VerticalAlignment" Value="Center" /> <Setter Property="FrameworkElement.HorizontalAlignment" Value="Center" /> </Style> </DataGridCheckBoxColumn.ElementStyle> </DataGridCheckBoxColumn> </DataGrid.Columns> </DataGrid> ?这是我的代码:

{{1}}

2 个答案:

答案 0 :(得分:3)

当您在ElementStyle上设置DataGridCheckBoxColumn时,应将FrameworkElement.IsHitTestVisible="False"添加到Style

<Setter Property="FrameworkElement.IsHitTestVisible" Value="False"/>

此外,如果您将TargetType="CheckBox"添加到Style,那么您不必再为每个FrameworkElement重复Setter

<DataGridCheckBoxColumn.ElementStyle>
    <Style TargetType="CheckBox">
        <Setter Property="Margin" Value="0,1,0,0" />
        <Setter Property="VerticalAlignment" Value="Center" />
        <Setter Property="HorizontalAlignment" Value="Center" />
        <Setter Property="IsHitTestVisible" Value="False"/>
    </Style>
</DataGridCheckBoxColumn.ElementStyle>

答案 1 :(得分:2)

我怀疑这是一个错误(因为它不会发生在其他列类型上)。

要解决它,你需要做的就是确保你的风格基于默认风格;将BasedOn="{x:Static DataGridCheckBoxColumn.DefaultElementStyle}"添加到Style元素:

<DataGrid IsReadOnly="True">
    <DataGrid.Columns>
        <DataGridCheckBoxColumn Header="Test" IsReadOnly="True" Binding="{Binding MyBinding}">
            <DataGridCheckBoxColumn.ElementStyle>
                <Style BasedOn="{x:Static DataGridCheckBoxColumn.DefaultElementStyle}">
                    <Setter Property="FrameworkElement.Margin" Value="0,1,0,0" />
                    <Setter Property="FrameworkElement.VerticalAlignment" Value="Center" />
                    <Setter Property="FrameworkElement.HorizontalAlignment" Value="Center" />
                </Style>
            </DataGridCheckBoxColumn.ElementStyle>
        </DataGridCheckBoxColumn>
    </DataGrid.Columns>
</DataGrid>

如果您打算在运行时更改DataGrid.IsReadOnly属性,则此方法的优点是您无需执行大量工作。