1.LayoutControl中解决放置在LayoutControlItem中的编辑控件在回车跳转到下一个控件的问题

设置LayoutControl.OptionsFocus.EnableAutoTabOrder = false (默认为true),将编辑控件的EnterMoveNextControl属性设置为true,这样在LayoutControl中,也可使实现回车跳转录入数据,方便业务人员录入。如果编辑控件没有EnterMoveNextControl属性,可以使用控件的Key事件,如果是回车键,就SendKeys("{Tab}")即可,具体怎么写可自行琢磨。

相关文章:

  • 2022-12-23
  • 2021-04-10
  • 2021-08-11
  • 2022-12-23
  • 2022-01-14
  • 2022-12-23
猜你喜欢
  • 2022-02-21
  • 2021-06-26
  • 2022-12-23
  • 2021-06-02
  • 2021-09-19
  • 2022-01-16
  • 2021-08-26
相关资源
相似解决方案