在UserControl中,我有一个属性:
public FontWeight RowFontWeight { get { return FontWeights.Bold; } set { } }
我有一个RadGridView名称mygv;在usercontrol的构造函数中我设置了
mygv.DataContext = this;
在gridview中,我有:
<telerik:RadGridView.RowStyle> <Style TargetType="telerik:GridViewRow"> <Setter Property="FontWeight" Value="{Binding RowFontWeight}" /> </Style> </telerik:RadGridView.RowStyle>
但行不会更改为粗体。 我已将属性类型更改为字符串,但它不再起作用 显然,如果我写...值=“大胆”......,没关系。