AD
Administrator
Syncfusion Team
April 14, 2003 08:07 AM UTC
Hi Milen,
thanks for pointing this out. We'll get that fixed.
As a workaround add the following line in the forms constructor after calling InitializeComponent:
this.tabControl1.ActivePage = this.tabBarPage1;
(within Form.Load event handler should also be fine)
Stefan
AD
Administrator
Syncfusion Team
April 14, 2003 10:40 AM UTC
And add also the following handler:
this.tabControl1.Paint += new PaintEventHandler(tabControl1_Paint);
private void tabControl1_Paint(object sender, PaintEventArgs e)
{
this.tabControl1.Bar.TabBarChild.Dirty = true;
}
Stefan