在用datasource属性绑定数据后,我要把列的单元格类型设置成datatime。
FarPoint.Win.Spread.CellType.DateTimeCellType datatimeCell = new FarPoint.Win.Spread.CellType.DateTimeCellType();
datatimeCell.DateTimeFormat = FarPoint.Win.Spread.CellType.DateTimeFormat.ShortDate;
this.fpSprdSrchCI_Sheet1.Columns[6].CellType = datatimeCell;
然后spread里面columns[6]就没内容了. 点击单元格时弹出一个日期框框.
晕了
|