Reputation: 6544
I have a tab control with tab pages (cf).
The tabs are too small ... can some1 tell me how can i make them bigger?
Upvotes: 4
Views: 13147
Reputation: 11
Change ItemSize property in properties window. You can change width and height of the tabs using this property.
Upvotes: 1
Reputation: 1116
Changing SizeMode property to FillToRight\FillToLeft does the trick. Then you can enlarge the font and both height and width of the tab will grow.
Upvotes: 1
Reputation: 41
The tab size is set by the ItemSize
property on the tab control.
Upvotes: 4
Reputation: 942119
Increase the size of the TabControl's Font. That takes care of the height. If they are not wide enough then put more text in them. Or set the SizeMode property to Fixed.
Upvotes: 15