TabControlAdv TabPanel Cannot Remove White Border
My TabStyle is
TabStyle =
typeof(Syncfusion.Windows.Forms.Tools.TabRendererOffice2007);There is a white border underneath the tabs I cannot seem to find a way to remove.
The image is attached. Any help much appreciated.
Border_9ac19c2.zip
Hi Gaukar,
Thanks for your interest in Syncfusion products.
We have forwarded your query to the concerned team. They will get back to you soon.
Appreciate your patience.
Athiram S
Hi Gaukhar,
Thanks for your interest in Syncfusion products.
You can achieve your requirement of hiding the white line, by disabling the TabControlAdv’s ThemeEnabled property as per the following code snippet
[C#]
this.tabControlAdv1.BorderVisible = false;
this.tabControlAdv1.ThemesEnabled = false;
Please let us know if you have any concerns.
Regards,
Paul Anderson S
{
this.tabbedMDIManagerDiv.TabStyle = typeof(Syncfusion.Windows.Forms.Tools.TabRendererOffice2007);
this.tabbedMDIManagerDiv.TabControlAdded += new Syncfusion.Windows.Forms.Tools.TabbedMDITabControlEventHandler(this.tabbedMDIManagerDiv_TabControlAdded);
this.tabbedMDIManagerDiv.AttachToMdiContainer(this);
}
private void tabbedMDIManagerDiv_TabControlAdded(object sender, Syncfusion.Windows.Forms.Tools.TabbedMDITabControlEventArgs args)
{
tabControl = args.TabControl;
tabControl.TabPanelBackColor = Color.FromArgb(51, 51, 51);
tabControl.BorderVisible = false;
tabControl.ThemesEnabled = false;
tabControl.ActiveTabColor = Color.FromArgb(42, 110, 187);
}
Hi Gaukhar,
Thanks for your interest in Syncfusion products.
I am afraid that I am unable to reproduce this issue. Also I have created a simple sample to test this issue and it is available in the following link.
Sample :
http://www.syncfusion.com/downloads/Support/DirectTrac/98671/sample98272983.zip'>sample36389399.zip
Please have a look at the sample and if the issue still exists, could you please try reproducing it in the above sample or send reproducible sample and the reproducing steps so that we could sort out the cause of the issue and provide you the solution?
Please let us know if you have any concerns.
Regards,
Paul Anderson S
- 5 Replies
- 3 Participants
-
GM Gaukhar Massabayeva
- Dec 11, 2012 04:44 PM UTC
- Dec 18, 2012 09:41 AM UTC