columnHeaderSection更改背景色
本帖最后由 liyutong 于 2020-12-17 18:16 编辑multirow 版本2.4.4003.2012
template模板里怎么修改columnHeaderSection中单元格 的背景色呢
模板设置backcolor并不好使,还需要设置什么其他的属性吗 var template = Template.CreateGridTemplate(3);
var cellStyle = new CellStyle();
cellStyle.BackColor = Color.Red;
template.NamedCellStyles.Add("style1", cellStyle);
var textBoxCell = new GcTextBoxCell();
textBoxCell.Style = new NamedCellStyle("style1");
template.ColumnHeaders.Cells.Add(textBoxCell);
gcMultiRow1.Template = template;
gcMultiRow1.RowCount = 5;
上述的代码可以修改背景色
多谢版主回答:'( 不客气
页:
[1]