Non-linear left alignment

Is it possible to implement in winforms a scrollable, not multi-line, left alignment tabcontrol?

If this is possible by drawing the owner, is there any existing code to use as a reference when implementing my own?

EDIT: "Left Aligned" means that the tabControl property is set to: "Alignment = Left" (as opposed to Left-to-right).

+4
source share
2 answers

You will need to make your own to do this. You can look at the Y-et-A-nother TabControl on how to do this.

Also, using WPF will probably be a lot easier to achieve this, but since you are using winform, you will have to work a bit.

0
source

All Articles