可以用如下的代码来设置,这种效果是否可以满足你的需求呢
- GrapeCity.Win.MultiRow.CellStyle cellStyle1 = new GrapeCity.Win.MultiRow.CellStyle();
- // 设置style上面的BackColor 与 SelectionBackColor 一致
- cellStyle1.BackColor = System.Drawing.Color.Brown;
- cellStyle1.SelectionBackColor = System.Drawing.Color.Brown;
- // 把这个style设置给template上面的一个cell
- gcTextBoxCell1.Style = cellStyle1;
复制代码
|