I have a problem with ribbonBar on backstageView mode. The button which open backstage isn't fit to other tabs.
Picture below decribe this situation:
I would like have a effect for example with MS Outlook program, next picture show those tabs.
Someone can resolve this problem ?
Thanks.
2 Answers, 1 is accepted
0
Ivan Todorov
Telerik team
answered on 12 Mar 2012, 10:09 AM
Hi Dawid,
Thank you for writing.
This appears to be an issue with the backstage button. The issue is only present when you are using a RadRibbonForm with the aero effect turned on. To overcome this, you can either disable the aero effect of the ribbon form by setting its AllowAero property to false or you can correct the position of the button by setting its Margin property:
public RadRibbonForm1()
{
InitializeComponent();
this.AllowAero = false;
//OR
this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Margin = new Padding(4, 27, 0, 0);
}
I have logged this issue to our Public Issue Tracking System so you can subscribe to it and track it for changes. Here you can find the PITS Issue: Public URL. We will address this in a future release. I have updated your Telerik points for reporting this issue.
Should you have any additional questions, do not hesitate to ask.