Declined
Last Updated: 30 Jul 2026 11:59 by ADMIN
ADMIN
Kiril Vandov
Created on: 25 Feb 2014 15:12
Category: RibbonView
Type: Bug Report
3
RibbonWindow: Icon appears clipped and offset
RibbonWindow icon appears clipped when the DPI  is set larger than 100%. Also, the icon separator is offset.
3 comments
ADMIN
Martin Ivanov
Posted on: 30 Jul 2026 11:59

This behavior was originally reported over 12 years ago and has not received significant demand or follow-up from the community since then. Considering this and the availability of a workaround, we are unable to prioritize it over more impactful and widely requested improvements.

If this limitation is still affecting your scenario, please share additional context or use cases. This will help us better assess the severity and reconsider prioritization in the future. Thank you!

Regards,
Martin Ivanov
Progress Telerik

Unlock smarter data exploration in RadGridView with AI-powered features. Enable natural language queries and help users uncover insights faster.

Learn more about RadGridView AI features

ADMIN
Kiril Vandov
Posted on: 17 Mar 2015 12:08
Until this issue is resolved you could workaround this issue like follows:
- use the loaded event of the window to get the TemplatePart holding the Image -> "PART_Icon"
- set its width and height to the default size 16x16.

void MainWindow_Loaded(object sender, RoutedEventArgs e)
        {
            var image = this.ChildrenOfType<Image>().FirstOrDefault(x => x.Name == "PART_Icon");

            if (image != null)
            {
                image.Width = 16;
                image.Height = 16;
            }
        }
Daniel
Posted on: 09 Mar 2015 09:16
Is there a workarround meantime?