我想在codebehind中创建这个样式,但我不知道如何设置绑定到datagrid行属性。
<UserControl.Resources>
<Style x:Key="MyStyle" TargetType="{x:Type DataGridCell}">
<Setter Property="Background" Value="{Binding SelectedColour[0]}" />
</Style>
</UserControl.Resources>
我该怎么办? 谢谢 安德莉亚
答案 0 :(得分:3)
只需使用相同的路径创建Binding
对象:
Style myStyle = new Style(typeof(DataGridCell));
myStyle.Setters.Add(new Setter(DataGridCell.BackgroundProperty, new Binding("SelectedColour[0]")));
this.Resources.Add("MyStyle", myStyle);