I have a class that is the worlds simplest descendant of a TabControl. Here's the declaration:
public
class ScrollableTabControl1 : TabControl
{
public ScrollableTabControl1() : base()
{
DefaultStyleKey = typeof(TabControl);
}
}
This control does not show up in the hosting page. Its just blank - regardless of the DefaultStyleKey. This works in B2. Any ideas?