Declined
Last Updated: 19 Aug 2026 13:44 by ADMIN
ADMIN
Stefan
Created on: 03 Jun 2013 03:48
Category: RibbonBar
Type: Bug Report
1
FIX. RadRibbonForm - the icon of the form is misplaced when the form is maximized and Windows 7 Basic theme is used
To reproduce:
- Set the Windows theme to Windows 7 Basic
- Start a RadRibbonForm and maximize it

Workaround:

void Form1_Resize(object sender, System.EventArgs e)
{
    if (this.WindowState == FormWindowState.Maximized)
    {
        this.RibbonBar.RibbonBarElement.IconPrimitive.Padding = new Padding(5, 5, 0, 0);
    }
    else
    {
        this.RibbonBar.RibbonBarElement.IconPrimitive.Padding = Padding.Empty;
    }
}
1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 19 Aug 2026 13:44

Hello,

This behavior was originally reported more than ten years ago, and we haven’t noticed significant demand or follow-up from the community since then. Also, there is a feasible workaround that can be applied. As a result, we currently plan to prioritize improvements that have a broader impact and are more widely requested.

I marked this thread as "Declined". If this limitation is still affecting your scenario, please share additional context or use cases. 

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Modernizing a WinForms application? Use the AI-powered WinForms Converter to simplify migration to Telerik UI for WinForms.