Reputation: 52608
Has anybody got any suggestions for a custom tabcontrol implemented in C# and which adheres to these criteria:
I prefer not to get my hands dirty with ownerdrawing if a solution already exists.
Upvotes: 1
Views: 13003
Reputation: 1124
The tab control in WPF fulfills all of your requirements. You can override the template and go to town on it.
Upvotes: 1
Reputation: 1339
You probably don't have a need for this anymore but anyone else who stumbles upon it might find it useful.
I found this tabcontrol on CodeProject it is also very easy to Draw your own tabs with it, they even give you a example on the site.
A couple more tab controls.
TabStrips: A TabControl in the Visual Studio 2005 way!
Upvotes: 7