如何在 radGridView 中设置标题的背景颜色
本文关键字:标题 背景 颜色 设置 radGridView | 更新日期: 2023-09-27 18:34:02
我想更改标题的背面颜色,除了使用主题之外,radGridView.Is 有什么方法可以更改吗?赢形)
private void radGridView1_ViewCellFormatting(object sender, CellFormattingEventArgs e)
{
if (e.CellElement is GridHeaderCellElement)
{
if (e.CellElement.Text == "Your header cell text") //checking for the text in header cell
{
e.CellElement.DrawBorder = true;
e.CellElement.DrawFill = true;
e.CellElement.GradientStyle = Telerik.WinControls.GradientStyles.Solid;
e.CellElement.BackColor = Color.Green;
e.CellElement.ForeColor = Color.Red;
}
}
}