回复 1楼whpengwei的帖子
MultiRow的SummaryCell没有这样的功能,但是你可以处理GcMultiRow.CellFormatting事件来完成。- void gcMultiRow1_CellFormatting(object sender, GrapeCity.Win.MultiRow.CellFormattingEventArgs e)
- {
- if (e.CellName == "summaryCell1")
- {
- Decimal value = (Decimal)e.Value;
- e.Value = this.ConvertToChineseCapitalCurrency(value);
- }
- }
- private string ConvertToChineseCapitalCurrency(Decimal value)
- {
- //从一个数字类型转换成一个字符串类型的大写货币
- }
复制代码 |