回复 12楼hanson的帖子
hanson 你好,
Spread 有内置的单元格类型 NumberCellType ,可以实现 递增递减按钮的效果。测试代码如下:
- FarPoint.Win.Spread.CellType.NumberCellType nbtype = new FarPoint.Win.Spread.CellType.NumberCellType();
- nbtype.SpinButton = true;
- fpSpread1_Sheet1.Cells[0, 0].CellType = nbtype;
- this.fpSpread1.EditModeReplace = true;
复制代码 |