0
我有這個程序應該在選定的選項卡上執行一段代碼。我該怎麼做? 我已經試過:如何知道在vb.net的選項卡控件中選擇了哪個選項卡
if tabcontrol1.tabcount=1 then
'Execute this code'
else if tabcontrol1.tabcount=2 then
'execute this code
end if
- 但是不工作,有什麼做的正確方法?
我有這個程序應該在選定的選項卡上執行一段代碼。我該怎麼做? 我已經試過:如何知道在vb.net的選項卡控件中選擇了哪個選項卡
if tabcontrol1.tabcount=1 then
'Execute this code'
else if tabcontrol1.tabcount=2 then
'execute this code
end if
- 但是不工作,有什麼做的正確方法?
在Tabcontrol_selected
事件中,您可以使用selectedindex
屬性值來獲取當前選項卡。