0
可能重複:
How to hide TabPage from TabControl
Hiding and Showing TabPages in tabControl顯示/隱藏標籤
我有一個TabControl Windows窗體application.It有5個選項卡,並在窗體加載,我想只顯示兩個標籤
是否有辦法隱藏所有其他標籤
在此先感謝
可能重複:
How to hide TabPage from TabControl
Hiding and Showing TabPages in tabControl顯示/隱藏標籤
我有一個TabControl Windows窗體application.It有5個選項卡,並在窗體加載,我想只顯示兩個標籤
是否有辦法隱藏所有其他標籤
在此先感謝
去:http://www.thejoyofcode.com/Show_and_Hide_tab_pages_in_Windows_Forms.aspx
或
也可以使用tabPage.Visible
財產
tabpage.Visible屬性隱藏所有的標籤,但我想告訴一些標籤和隱藏其他選項卡 – Pawan
使用索引隱藏TabPage tabControl1.TabPages [index] .Visible = false; –