Reputation: 93
I want to make a vertical tab control with VERTICAL text. Not horizontal text.
Like this:
(source: lidorsystems.com)
I tried MSDN solution but it makes the text horizontal.
Upvotes: 0
Views: 4312
Reputation: 112279
If you are working with WinForms (System.Windows.Forms), then set the Alignment
property of the TabControl
to Left
. (You can find it under "Behavior" in the properties window.)
The result looks like this:
Upvotes: 2