我想在RadGridView
粗体中创建一些行;
我已经设置了
<telerik:RadGridView.RowStyle>
<Style TargetType="telerik:GridViewRow">
<Setter Property="FontWeight" Value="{Binding RowFontWeight}" />
</Style>
</telerik:RadGridView.RowStyle>
并在ItemsSource
对象中我设置了RowFontWeight
值,但它不起作用
答案 0 :(得分:1)
我认为RowFontWeight
无法在DataContext
数据网格行中访问;我过去使用过这种风格,对我来说效果很好;
我附加了一个telerik示例,我通过在模型类(RowFontWeight
和Club.cs
)中添加Player.cs
属性并将您的样式添加到datagrid来修改此示例;它工作正常,父网格行变为粗体,在子网格中它们变亮。