This is a migrated thread and some comments may be shown as answers.

Rad Ribbon Bar's Tab's Bug

1 Answer 51 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Ali
Top achievements
Rank 1
Ali asked on 15 Dec 2015, 07:30 AM

Hi

When I collapse/expand the Rad Ribbon Bar, I will see an extra line under every tab.
Is this a bug? How can I solve it?

I have attached an image for more detailed information.

1 Answer, 1 is accepted

Sort by
0
Hristo
Telerik team
answered on 17 Dec 2015, 06:28 AM
Hi Ali,

Thank you for writing.

You have encountered a known issue in RadRibbonBar which was fixed with our Q3 2015 SP1 release. If it is not possible to upgrade your project with the latest assemblies please use the following workaround:
public RadRibbonForm1()
{
    InitializeComponent();
 
    this.radRibbonBar1.ExpandedStateChanged += new EventHandler(radRibbonBar1_ExpandedStateChanged);
 
}
 
private void radRibbonBar1_ExpandedStateChanged(object sender, EventArgs e)
{
    this.radRibbonBar1.ElementTree.ApplyThemeToElementTree();
}

I hope this helps. Should you have further questions please do not hesitate to write back.

Regards,
Hristo Merdjanov
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
RibbonBar
Asked by
Ali
Top achievements
Rank 1
Answers by
Hristo
Telerik team
Share this question
or