tanqingyang 发表于 2019-11-29 14:58:32

GcMultiRow 中的GcNumberCell控件的 Number Format如何设置

我是想在代码端 设置 GcNumberCell 控件的 入力format 和光标离开format
请问应该怎么设置

比如 编辑时候的 format 是 ##########0
离开后的format 是 ##,###,###,##0

Richard.Ma 发表于 2019-11-29 18:11:58

需要一些时间帮您验证问题,周一早上给您答复

Richard.Ma 发表于 2019-12-2 14:08:09

var numberIntegerPartDisplayField4 = new GrapeCity.Win.MultiRow.InputMan.NumberIntegerPartDisplayField();
            numberIntegerPartDisplayField4.GroupSizes = new int[] {3, 3, 3, 0};
            this.gcNumberCell5.DisplayFields.Add(numberIntegerPartDisplayField4);
            this.gcNumberCell5.Fields.DecimalPart.MaxDigits = 0;
            this.gcNumberCell5.Fields.IntegerPart.GroupSizes = new int[] {0};
            this.gcNumberCell5.Fields.IntegerPart.MaxDigits = 11;
            this.gcNumberCell5.Fields.IntegerPart.MinDigits = 1;
            this.gcNumberCell5.Fields.SignPrefix.NegativePattern = "";

tanqingyang 发表于 2019-12-5 08:40:49

非常感谢您的回答

Richard.Ma 发表于 2019-12-5 09:56:23

不客气
页: [1]
查看完整版本: GcMultiRow 中的GcNumberCell控件的 Number Format如何设置