Telerik RadGridView组件:更改字符串中的文本颜色“单击此处添加新项目”

时间:2015-04-28 09:17:45

标签: telerik radgridview

我想使用Telerik组件:RadGridView

如何更改“单击此处添加新项目”字符串的文本颜色?我认为在Google上找到解决方案很容易,但我找不到它。

1 个答案:

答案 0 :(得分:0)

您可以将GridView的Foreground属性设置为所需的颜色,但这也会更改行中文本的颜色。要覆盖它,您可以添加特定的RowStyle。以下代码:

<telerik:RadGridView
    Foreground="Red"
    GroupRenderMode="Flat"
    ItemsSource="{Binding Countries, Mode=TwoWay}"
    NewRowPosition="Bottom">
    <telerik:RadGridView.RowStyle>
        <Style TargetType="telerik:GridViewRow">
            <Setter Property="Foreground" Value="Black"/>
        </Style>
    </telerik:RadGridView.RowStyle>
</telerik:RadGridView>

结果如下:

enter image description here