我发现这段代码在wpf xaml中运行得很完美。 如何在代码后面执行此操作?
<DataGrid.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="#FF0000"/>
</DataGrid.Resources>
答案 0 :(得分:0)
从后面的代码中你可以添加这样的资源 -
dataGrid.Resources.Add(SystemColors.HighlightBrushKey, "#FF0000");
您需要获取网格对象,然后在该网格的资源中添加新资源