Tab Control Customization

  • Thread starter Thread starter Martin Rais
  • Start date Start date
M

Martin Rais

Hi! I would like to draw a Tab Control myself (instead of the recatangle,
for example, I would like to draw a rounded Rect). Is there any way to do
this or should I create my own Tab Control?
Thanks.
Martin
 
Depends on exactly what you want.
You can Fully OwnerDraw the TabControl, but if you want full control over
the location and size of the tabs, then you'll be better off creating a new
tabcontrol from scratch.

Some links which you may find useful:
a.. http://www.dotnetrix.co.uk/tabcontrols.html
b.. http://www.dotnetrix.co.uk/custom.html ("Create a PanelManager" can
easily be modified to build a custom tabcontrol)
c.. http://www.codeproject.com/cs/miscctrl/flattabcontrol.asp
d.. http://www.codeproject.com/dotnet/CustomTabControl.asp
 
Back
Top