想象一下,我有一个名为“MyCheckBoxStyle”一个CheckBox自定义样式。
我怎样才能让嵌入基于我MyCheckBoxStyle定制DataGridCheckBoxColumn风格的一个DataGrid的风格?
想象一下,我有一个名为“MyCheckBoxStyle”一个CheckBox自定义样式。
我怎样才能让嵌入基于我MyCheckBoxStyle定制DataGridCheckBoxColumn风格的一个DataGrid的风格?
您可以使用DataGridTemplateColumn创建自定义checkboxcolumn
<Custom:DataGridTemplateColumn x:Name="gdchk" Header="Test" MaxWidth="50">
<Custom:DataGridTemplateColumn.CellTemplate >
<DataTemplate>
<CheckBox IsChecked="{Binding Path = classname}" HorizontalAlignment="Center" Style="{DynamicResource myCheckBoxStyle}"/>
</DataTemplate>
</Custom:DataGridTemplateColumn.CellTemplate>
</Custom:DataGridTemplateColumn>
希望这可以帮助。
你可以简单地使用你定义的样式与ElementStyle属性。
在资源定义的风格:
<Style x:Key="MyCheckBoxStyle" TargetType="{x:Type CheckBox}"> ... </Style>
而我的DataGrid的复选框列:
<DataGridCheckBoxColumn ElementStyle="{StaticResource MyCheckBoxStyle}" Binding="{Binding someValue}" />
尝试这个
<DataGridCheckBoxColumn MinWidth="100"
Binding="{Binding Path=BoolValue}"
Header="Bool Column"
IsThreeState="True">
<DataGridCheckBoxColumn.ElementStyle>
<Style TargetType="CheckBox">
<Setter Property="Background" Value="{Binding BoolValueColour, Converter={StaticResource MyConverter}}" />
</Style>
</DataGridCheckBoxColumn.ElementStyle>
</DataGridCheckBoxColumn>
对我来说,没有工作,直到我发现了以下解决方法:
<DataGridTemplateColumn
Header="Skip" Width="18"
IsReadOnly="False" CanUserResize="False">
<DataGridTemplateColumn.CellTemplate >
<DataTemplate DataType="gfxModule:BatchPairItemModel">
<CheckBox
Tag="{Binding}"
IsChecked="{Binding Tag.Skip, Mode=TwoWay,
RelativeSource={RelativeSource Self}}"
Template="{DynamicResource CheckBoxCircleXTemplate}"
ToolTip="Skip"
/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>