Windows 应用程序用户控件中的选项卡索引问题

发布于 2024-11-03 18:28:17 字数 127 浏览 6 评论 0原文

我创建一个具有一些文本框和按钮的用户控件。问题是当我使用选项卡在我的表单中遍历时,当我的用户控件获得焦点时,焦点会进入用户控件内部,如果它会聚焦,按钮会进入内部。我如何简单地转到我的用户控件之后的下一个控件不在里面吗?

谢谢

I create an user control that has some textbox and buttons.the problem is when I use tab to traverse in My form when my usercontrol get focus the focus go inside of user control and buttons insid if it would focus.How I can simply go to next control after my user control not inside it?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

牛↙奶布丁 2024-11-10 18:28:17

如果控件具有 Focusable CanHaveFocus TabStop 类型的属性,请将它们设置为 false。

还将这些控件的 TabIndex 属性设置为 0。我确信这些控件在获取选项卡焦点方面将是鬼魂。

If the controls have Focusable CanHaveFocus TabStop sort of properties, set them to false.

Also set the TabIndex properties of those controls to 0. I'm sure that the controls will be ghosts in terms of getting tab focus.

不喜欢何必死缠烂打 2024-11-10 18:28:17

将要排除的自定义用户控件元素(例如按钮)的 TabStop 属性设置为 false

Set TabStop property on your custom user control elements which you want to exclude (eg. your button) to false.

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