DataGridCheckBoxColumn 在应用 ElementStyle 时丢失 IsReadOnly 状态
DataGridCheckBoxColumn loses IsReadOnly state when applying ElementStyle
我需要将 DataGridCheckBoxColumn
垂直居中。由于我没有在 DataGridCheckBoxColumn
中找到 属性,因此我应用了 ElementStyle
。但是,当应用此样式时,我的 CheckBox
再次变为可检查,尽管它在我的 DataGrid
中设置为 ReadOnly
(整个 Datagrid
是 ReadOnly
) , 以及 DataGridCheckBoxColumn
本身。
如何创建一个垂直居中的 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>
当您在 DataGridCheckBoxColumn
上设置 ElementStyle
时,您应该将 FrameworkElement.IsHitTestVisible="False"
添加到您的 Style
:
<Setter Property="FrameworkElement.IsHitTestVisible" Value="False"/>
此外,如果您将 TargetType="CheckBox"
添加到 Style
,则您不必再为每个 Setter
重复 FrameworkElement
:
<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>
我怀疑这是一个错误(因为它不会发生在其他列类型上)。
要解决这个问题,您需要做的就是确保您的样式基于默认样式;通过将 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
属性,则无需做大量工作。
我需要将 DataGridCheckBoxColumn
垂直居中。由于我没有在 DataGridCheckBoxColumn
中找到 属性,因此我应用了 ElementStyle
。但是,当应用此样式时,我的 CheckBox
再次变为可检查,尽管它在我的 DataGrid
中设置为 ReadOnly
(整个 Datagrid
是 ReadOnly
) , 以及 DataGridCheckBoxColumn
本身。
如何创建一个垂直居中的 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>
当您在 DataGridCheckBoxColumn
上设置 ElementStyle
时,您应该将 FrameworkElement.IsHitTestVisible="False"
添加到您的 Style
:
<Setter Property="FrameworkElement.IsHitTestVisible" Value="False"/>
此外,如果您将 TargetType="CheckBox"
添加到 Style
,则您不必再为每个 Setter
重复 FrameworkElement
:
<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>
我怀疑这是一个错误(因为它不会发生在其他列类型上)。
要解决这个问题,您需要做的就是确保您的样式基于默认样式;通过将 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
属性,则无需做大量工作。