Hi Craig,
Here is the source of the original DrawTabBackground:
protected virtual void DrawTabBackground(Graphics g)
{
if(m_Skin != null)
{
if(DrawSkinBackground(g))
return;
}
switch(m_Tab.m_Info.Style)
{
case TabStyle.Standard:
DrawTabStandardBackground(g);
break;
case TabStyle.Buttons:
DrawTabButtonsBackground(g);
break;
case TabStyle.MultiDocument:
DrawTabMultiDocBackground(g);
break;
}
}
May be better solution will be to override DrawTabStandardBackground if you use only standard tab style, and DrawSkinBackgorund methods.
Best Regards,
Nevron Support Team