为什么标签和框架有“标签索引”? VB6 中的属性?
有谁知道为什么标签和框架(可能还有其他控件)在 VB6 中有一个 TabIndex
属性?有什么用吗?我应该将 GUI 编程的某些功能合并到我的应用程序中(我很高兴地没有意识到)?
Does anyone know why Labels and Frames (and possibly other controls) have a TabIndex
property in VB6? Is there some use for it; some feature of GUI programming I ought to be incorporating in my applications (that I am blissfully unaware of)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了确认科迪在评论中所说的话。 TabIndex 的 VB6 手动条目 说:
但
To confirm what Cody said in the comments. The VB6 manual entry for TabIndex says:
but
TabIndex
是用于确定用户按 TAB 键时聚焦控件的顺序的属性。如果
TabIndex=5
的控件获得焦点并且用户按 TAB,则TabIndex=6
的控件将获得焦点。TabIndex
is the property used to determine the sequence of focused controls when user presses TAB key.If control with
TabIndex=5
is focused and user presses TAB, control withTabIndex=6
will take focus.