我想在后面的代码中创建此样式,但是我不知道如何设置对datagrid row属性的绑定。
<UserControl.Resources>
<Style x:Key="MyStyle" TargetType="{x:Type DataGridCell}">
<Setter Property="Background" Value="{Binding SelectedColour[0]}" />
</Style>
</UserControl.Resources>
我该怎么做?
谢谢
安德里亚
最佳答案
只需创建具有相同路径的Binding
对象:
Style myStyle = new Style(typeof(DataGridCell));
myStyle.Setters.Add(new Setter(DataGridCell.BackgroundProperty, new Binding("SelectedColour[0]")));
this.Resources.Add("MyStyle", myStyle);
关于c# - WPF从后面的代码创建样式绑定(bind),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45012118/