找回密码
 立即注册

QQ登录

只需一步,快速开始

holly.huang

初级会员

34

主题

125

帖子

365

积分

初级会员

积分
365

活字格认证微信认证勋章

holly.huang
初级会员   /  发表于:2014-7-24 14:51  /   查看:4448  /  回复:1
如题,
代码如下:

System.Globalization.DateTimeFormatInfo dtf = new System.Globalization.DateTimeFormatInfo();
            //dtf.ShortTimePattern = "t";
            dtf.ShortTimePattern = "HH:mm:ss";
             DateTimeCellType cell = new DateTimeCellType();
             cell.DateTimeFormat = dtf;
             this.FpSpread1.Sheets[0].Cells[1, 1].CellType = cell;
             this.FpSpread1.Sheets[0].Cells[1, 1].Text = System.DateTime.Now.ToShortTimeString();

1 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2014-7-24 17:14:00
沙发
回复 1楼holly.huang的帖子

需要设置 DateTimeCellType 的 FormatString 属性,请使用以下代码测试:

  1.             FarPoint.Web.Spread.DateTimeCellType dt = new FarPoint.Web.Spread.DateTimeCellType();
  2.             System.Globalization.DateTimeFormatInfo dtf = new System.Globalization.DateTimeFormatInfo();
  3.             dtf.ShortTimePattern = "HH:mm:ss";
  4.             dt.DateTimeFormat = dtf;
  5.             dt.FormatString = "HH:mm:ss";
  6.             dt.MaximumValue = new DateTime(2020, 12, 31, 10, 10, 10);
  7.             dt.MinimumValue = new DateTime(1950, 1, 1, 10, 10, 10);
  8.             FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dt;
  9.             FpSpread1.ActiveSheetView.Cells[0, 0].Value = DateTime.Now;
复制代码

评分

参与人数 1满意度 +5 收起 理由
holly.huang + 5 OK

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部