gridcontrol syncfusion采用24小时时间格式

时间:2012-04-15 22:09:35

标签: c# grid syncfusion

抱歉这个基本问题。 我有一个syncfusion网格控件,显示时间格式在12pm,am格式。基础数据源具有日期时间格式。 我应该使用什么事件将日期显示更改为24小时格式 太阳

1 个答案:

答案 0 :(得分:2)

以下设置将使网格单元格具有24小时格式的日期时间值。

  this.gridControl1[2, 2].CellValueType = typeof(DateTime);
  this.gridControl1[2, 2].CellValue = new DateTime(2012, 5, 23, 16, 34, 48);
  this.gridControl1[2, 2].Format = "dd/mm/yy HH:mm:ss"; //Output is: 23/05/12 16:34:48