我正在使用telerik RadGridView控件。我想控制/设置网格中所有不同列标题的左,右,顶部和底部边框的颜色。 虽然解决方案似乎是在这样的边界内设置边框: -
<Border BorderThickness="5,0,0,0" BorderBrush="Green">
<Border BorderThickness="0,5,0,0" BorderBrush="Red">
<Border BorderThickness="0,0,5,0" BorderBrush="Pink">
<Border BorderThickness="0,0,0,5" BorderBrush="Blue">
</Border>
</Border>
</Border>
</Border>
但它删除了列标题的内容。
答案 0 :(得分:0)
你需要一个ContentPresenter
里面绑定到标题属性。