如何知道在vb.net中的选项卡控件中选择了哪个选项卡

时间:2010-03-18 12:40:17

标签: vb.net tabcontrol

我有这个程序应该在所选的选项卡上执行一段代码。我该怎么做? 我试过了:

if tabcontrol1.tabcount=1 then
'Execute this code'

else if tabcontrol1.tabcount=2 then
'execute this code
end if

- 但是不起作用,这样做的正确方法是什么?

1 个答案:

答案 0 :(得分:4)

Tabcontrol_selected事件中,您可以使用selectedindex属性值来获取当前标签。

SelectedIndex