alexenv
alexenv

Reputation: 93

How can I make a vertical tab control in VB.NET?

I want to make a vertical tab control with VERTICAL text. Not horizontal text.

Like this: vertical text
(source: lidorsystems.com)

I tried MSDN solution but it makes the text horizontal.

Upvotes: 0

Views: 4312

Answers (1)

Olivier Jacot-Descombes
Olivier Jacot-Descombes

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:

enter image description here

Upvotes: 2

Related Questions