选到最左边是MultiRow专门做的效果,好处是直接输入数字可以从左到右的修改。不知道为什么要改到右边。
如果一定要改的话比较麻烦,通过自定义CellType可以实现, 把所有需要使用GcDateTimeCell的地方换成MyGcDateCell
- public class MyGcDateCell : GcDateTimeCell
- {
- public override Type EditType
- {
- get
- {
- return typeof(MyGcDateEditingControl);
- }
- }
- }
- public class MyGcDateEditingControl : GcDateTimeEditingControl
- {
- public override void PrepareEditingControlForEdit(bool selectAll)
- {
- this.SelectAll();
- }
- }
复制代码 |