tab appearance in c#
-
hello I want to ask a question,, I add a tab and i want to show some of it's tabpages and to disappear the other, the tabpages has no such property as visible or enable. how i can do it?
Thaer
-
hello I want to ask a question,, I add a tab and i want to show some of it's tabpages and to disappear the other, the tabpages has no such property as visible or enable. how i can do it?
Thaer
Initially I thought that the
Show
andHide
methods ofTabPage
would do the trick, but it doesn't seem that way. You could probably achieve what you want to do by first creating yourTabPage
objects and then callTabControl.Add
andTabControl.Remove
to add/remove (show/hide, enable/disable) the tab pages you want. This is not the most elegant solution though, but it will solve your problem :) Good luck! -
hello I want to ask a question,, I add a tab and i want to show some of it's tabpages and to disappear the other, the tabpages has no such property as visible or enable. how i can do it?
Thaer