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

BackstageView in RibbonBar

2 Answers 99 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Dawid
Top achievements
Rank 1
Dawid asked on 09 Mar 2012, 08:44 AM
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

Sort by
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.

Regards,
Ivan Todorov
the Telerik team
RadControls for WinForms Q1'12 release is now live! Check out what's new or download a free trial >>
0
Dawid
Top achievements
Rank 1
answered on 12 Mar 2012, 10:28 AM
Yes, It's works :-)
Thanks so much.
Tags
RibbonBar
Asked by
Dawid
Top achievements
Rank 1
Answers by
Ivan Todorov
Telerik team
Dawid
Top achievements
Rank 1
Share this question
or