如何测试在 VB.net TabControl 中选择了哪个选项卡
我有一个带有两个 TabPage 的 TabControl,我想知道测试当前显示哪个选项卡的最佳方法是什么?我不知道为什么我无法弄清楚这一点......
I have a TabControl with two TabPages and I was wondering what is the best way to test which tab is currently displayed? I'm not sure why I can't figure this one out...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
如果您使用 .Net 3.5,则可以根据需要创建 IsSelected 方法作为扩展方法:
If you use .Net 3.5, you can create a IsSelected method as an extension method if you wish:
假设这是一个 WPF 应用程序,请确保每个 TabItem 都有一个名称。
然后只需检查即可。
Assuming this is a WPF application, make sure that each TabItem has an Name.
Then it's just a matter of checking.
试试这个..
这是在选择每个选项卡时如何修改
那么每个选项卡都会有一个功能
第一评分|第二评分|
不过你可以使用if elseif else语句。
这个发现对我有用。
Try This..
this is how to modify each of the tab when selected
then there will be a function of each tab
First Grading |Second Grading |
You can use if elseif else statement though.
this find works for me.
尝试使用 TabPages 集合编辑器为每个单独的选项卡设置“TAG”属性。将每个标签设置为代表 Tab 序列的数字(从 1 或 0 或任何适合的数字开始)
Try setting the "TAG" propety for each individual tab using the TabPages collection editor. Set each tag to a number representing the Tab sequence (starting at 1 or 0 or whatever to suit)
我有一个名为 tcMode 的 TabControl,其中包含名为 tcmRelease 和 tcmSwitch 的成员/项目,并且以下内容对我来说效果很好,能够无忧地移动选项卡/重命名;
选项卡控件成员的图像
I have a TabControl called tcMode, with members/items called tcmRelease and tcmSwitch, and the following works nicely for me with the ability to move the tabs around/rename without worrying;
Image of Tab Control Members
还可以执行以下操作:
Can also do the following:
此代码将显示当前选定的选项卡名称
This code will show the current selected tab name
TabControl.SelectedTab
TabControl.SelectedTab
使用该选项卡的“ENTER EVENT”
例如。
use that tab's "ENTER EVENT "
eg.
这是链接。
Here's the link.