WPF C1FlexGrid设置列序号后,序号列的列头如何设置信息?
在WPF C1FlexGrid设置列序号,代码如下//设置列头的序号
for (int i = 0; i < c1FlexGrid.Rows.Count; i++)
{
c1FlexGrid.RowHeaders = i + 1;
}请问如何在下图所示位置加标题?
谢谢反馈。
flexgrid分四个区域:Cells/ColumnHeaders/RowHeaders/TopLeftCells。
你图上就是TopLeftCells区域,直接设置TopLeftCells就可以。
比如:
flex.TopLeftCells = "序号";
页:
[1]