Non-multiline left-aligned tabcontrol
Is it possible to implement a scrollable, non-multiline, left-aligned tabcontrol in winforms?
If this is possible through owner-drawing, is there any existing code to use as a reference while implementing my own?
EDIT: "Left-aligned" means the tabCon开发者_如何学Pythontrol property is set: "Alignment=Left" (as opposed to Left-to-right).
You'll have to make your own in order to do that. You can have a look at Y-et-A-nother TabControl on how to do that.
Also, using WPF would probably be a lot easier to achieve that, but since you are using winform, you'll have to work a little bit more.
How to: Display Side-Aligned Tabs with TabControl
精彩评论