GridView行样式

时间:2012-06-27 10:03:19

标签: .net wpf styles radgrid

我想在RadGridView 粗体中创建一些行; 我已经设置了

<telerik:RadGridView.RowStyle>
   <Style TargetType="telerik:GridViewRow">
      <Setter Property="FontWeight" Value="{Binding RowFontWeight}" />
   </Style>
</telerik:RadGridView.RowStyle>

并在ItemsSource对象中我设置了RowFontWeight值,但它不起作用

1 个答案:

答案 0 :(得分:1)

我认为RowFontWeight无法在DataContext数据网格行中访问;我过去使用过这种风格,对我来说效果很好;

我附加了一个telerik示例,我通过在模型类(RowFontWeightClub.cs)中添加Player.cs属性并将您的样式添加到datagrid来修改此示例;它工作正常,父网格行变为粗体,在子网格中它们变亮。

enter image description here

Download Sample