Completed
Last Updated: 20 Feb 2015 09:59 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 17 Jul 2014 08:00
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - ApplicationMenu button is not positioned correctly when the system buttons are hidden in Office2013Light theme
To reproduce:
1. Add a RadRibbonBar
2. Apply Office2013Light theme
3. Use the following code snippet:

public Form1()
{
    InitializeComponent();

    this.radRibbonBar1.CloseButton = false;
    this.radRibbonBar1.MinimizeButton = false;
    this.radRibbonBar1.MaximizeButton = false;
    this.radRibbonBar1.ApplicationMenuStyle = Telerik.WinControls.UI.ApplicationMenuStyle.ApplicationMenu;
}


Workaround:
this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Margin = new Padding(3, 8, 0, 0);
0 comments