回复 4楼vbagcl的帖子
请尝试一下代码:
- C1.Win.C1FlexGrid.Column col1 = this.c1FlexGrid1.Cols[1];
- col1.DataType = Type.GetType("System.Int64");
- col1.Format = "d";
- col1.EditMask = "####-##-## ####";
- col1.Format = "####-##-## ####";
- this.c1FlexGrid1[1, 1] = 20130130141920;
复制代码 |