Windows 应用程序用户控件中的选项卡索引问题
我创建一个具有一些文本框和按钮的用户控件。问题是当我使用选项卡在我的表单中遍历时,当我的用户控件获得焦点时,焦点会进入用户控件内部,如果它会聚焦,按钮会进入内部。我如何简单地转到我的用户控件之后的下一个控件不在里面吗?
谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果控件具有
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.将要排除的自定义用户控件元素(例如按钮)的
TabStop
属性设置为false
。Set
TabStop
property on your custom user control elements which you want to exclude (eg. your button) tofalse
.