我正在使用 Xceed 数据网格控件,我正在尝试更改标题颜色,但似乎遇到了一些问题。我现在拥有的是以下代码片段:
Style style = new Style(typeof(ColumnManagerRow));
style.Setters.Add(new Setter(ColumnManagerRow.BackgroundProperty, Brushes.Black));
this.grid.Resources[typeof(ColumnManagerRow)] = style;
这在大多数情况下都有效,但我仍然看到它周围有一些灰色。任何帮助将不胜感激。
编辑
我添加了一个图像,其中包含我希望具有相同颜色的选定区域。