MultiRow的选择区域只能设置背景色、前景色。
this.gcMultiRow1.DefaultCellStyle.SelectionBackColor = Color.Black;
this.gcMultiRow1.DefaultCellStyle.SelectionForeColor = Color.White;
那个黑色的边框是设置给CurrentCell的。可以通过代码修改边框:
this.gcMultiRow1.CurrentCellBorderLine = new GrapeCity.Win.MultiRow.Line(LineStyle.Double, Color.Blue);
也可以给CurrentRow设置边框,在按行选择的时候会用到。
this.gcMultiRow1.CurrentRowBorderLine = new GrapeCity.Win.MultiRow.Line(LineStyle.Double, Color.Blue); |