回复 1楼workaholic的帖子
请问你指的是 Winforms 平台的 flexgrid 控件吗?如果是请使用以下代码设置:
- CellStyle cs = _flex.Styles.Add("emp");
- cs = _flex.Styles.Add("date");
- cs.DataType = typeof(DateTime);
- cs.Format = "dd-MMM-yy HH:mm:ss";
- cs.ForeColor = Color.DarkGoldenrod;
- rg = _flex.GetCellRange(2, 1, 3, 1);
- rg.Style = _flex.Styles["date"];
复制代码 |