Reputation: 20478
I want to create multiple pages on one Form
without showing tab pages!
How can i do that?
Can using Telerik PageView Solve this issue?
How can i hide Telerik PageView's header of pages?
Dock = Fill
Upvotes: 0
Views: 146
Reputation: 1133
For hiding the tab pages you just need to put this code on form load.
this.tabControl_Main.Appearance = TabAppearance.FlatButtons;
this.tabControl_Main.ItemSize = new Size(0, 1);
this.tabControl_Main.SizeMode = TabSizeMode.Fixed;
Upvotes: 3