如何更改 axapta 中控件的 Tab 键顺序?
如何更改 Microsoft Dynamics AX 2009 中控件的 Tab 键顺序?
How to change the tab order of the controls in Microsoft Dynamics AX 2009?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法直接控制 Tab 键顺序。这些字段按照表单中给出的字段顺序进行标记。使用
Skip
属性可防止按 Tab 键进入字段。我想你可以使用 WinAPI< /a> 调用来更改 Tab 键顺序,但这确实是不好的做法。
You cannot control the tab order directly. The fields are tabbed in the field order given in the form. Use the
Skip
property to prevent tabbing into a field.I guess you could use a WinAPI call to change the tab order, but it would be bad practice indeed.
还有另一种方法,使用 init 中的代码(或调用 init 中处理 tabOrder 的方法)。
There is another way, using code in the init (or calling a method which handles the tabOrder from init).