wzzlfok 你好,
可以通过重载 PercentCellType Format 方法实现,这只是改变 Text 值-我们看到的值,并没有改变 Value-使用计算的值,所以计算时要做相应修改,例如20/10000 :
- public class MyPercentCellType : FarPoint.Win.Spread.CellType.PercentCellType
- {
- public override string Format(object obj)
- {
- string text = obj.ToString() + "%";
- return text;
- }
- }
复制代码 |