回复 4楼q406157290的帖子
速度很慢?!!:~ 这个。。。我可没有大数据测试,换其他的试试吧,
- public override void CreateCellContent(C1FlexGrid grid, Border bdr, CellRange rng)
- {
- base.CreateCellContent(grid, bdr, rng);
- if (rng.Row == 0 && rng.Column == grid.Columns.Count - 1)
- {
- bdr.BorderThickness = new Thickness(0, 0, 1, 1);
- bdr.BorderBrush = new SolidColorBrush(Color.FromArgb(255, 240, 240, 240));
- bdr.UpdateDefaultStyle();
- }
- }
复制代码
在CreateCellContent之后把该单元格的边框样式还原回去试试。。。 |