no9
no9

Reputation: 6544

CF - TabControl - how to make the tabs bigger?

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

Answers (4)

emerald
emerald

Reputation: 11

Change ItemSize property in properties window. You can change width and height of the tabs using this property.

Upvotes: 1

Mark Kazakov
Mark Kazakov

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

user4016062
user4016062

Reputation: 41

The tab size is set by the ItemSize property on the tab control.

Upvotes: 4

Hans Passant
Hans Passant

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

Related Questions