Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# vertical tab control

Tags:

Can I make a tab control to look like the attached picture? I managed to add a tab control, but the text is still vertical. And I would want it to be horizontal.

enter image description here

like image 740
Rocshy Avatar asked Jan 24 '12 17:01

Rocshy


2 Answers

There is an MSDN article about how to achieve this. How to: Display Side-Aligned Tabs with TabControl

The following procedure shows how to render right-aligned tabs, with the tab text running from left to right, by using the "owner draw" feature.

like image 78
Lloyd Avatar answered Oct 01 '22 06:10

Lloyd


Try this TabStrip control. I believe this is what you want.

like image 21
silverspoon Avatar answered Oct 01 '22 07:10

silverspoon