为什么标签和框架有“标签索引”? VB6 中的属性?

发布于 2024-11-09 19:07:19 字数 110 浏览 0 评论 0原文

有谁知道为什么标签和框架(可能还有其他控件)在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

久夏青 2024-11-16 19:07:19

为了确认科迪在评论中所说的话。 TabIndex 的 VB6 手动条目 说:

无法接收焦点的控件(框架和标签控件)仍保留在 Tab 键顺序中,但在 Tab 键切换期间会被跳过。

如果按 Frame 或 Label 控件的访问键,焦点将移动到 Tab 键顺序中可以接收焦点的下一个控件。

To confirm what Cody said in the comments. The VB6 manual entry for TabIndex says:

Controls that can't receive the focus (Frame and Label controls) remain in the tab order but are skipped during tabbing.

but

If you press the access key for a Frame or Label control, the focus moves to the next control in the tab order that can receive the focus.

错爱 2024-11-16 19:07:19

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 with TabIndex=6 will take focus.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文