gaobowen 发表于 2018-7-23 09:54:56

Multirow10 中GcDateTimeCell

Multirow10 中的GcDateTimeCell,当编辑状态的时候,按上下键,怎样设置可以实现跟TextBoxCell一样,光标可以跳到上一个或下一个单元格

JeffryLI 发表于 2018-7-25 10:17:19

var gcDateTime = new GcDateTimeCell();
            //进编辑状态时可以按上下键切换,但对于可以Spin的控件,有个额外的前提条件。
            //满足其中之一即可
            gcDateTime.ExitOnArrowKey = true;

            //1.方式一
            gcDateTime.Spin.AllowSpin = false;
            //2.方式二
            gcDateTime.Spin.SpinOnKeys = false;
页: [1]
查看完整版本: Multirow10 中GcDateTimeCell