Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Paul
Created on: 02 Jul 2013 08:12
Category: Form
Type: Bug Report
1
FIX. RadRibbonForm back stage button is missplaced when in maximized state with office2010SilverTheme
RadRibbonForm back stage button is missplaced when in maximized state with office2010SilverTheme

Workarouond: Set the margin when the window is set to maximize.

void Form1_Resize(object sender, EventArgs e)
        {
            if (this.WindowState == FormWindowState.Maximized)
            {
                this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Margin = new Padding(3, 35, 3, 0);
            }
            else
            {
                this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Margin = new Padding(3, 33, 3, 0);
            }
        }
0 comments