Completed
Last Updated: 09 Jun 2021 13:25 by ADMIN
Release R2 2021 SP1
Thomas
Created on: 31 May 2021 16:16
Category: RibbonBar
Type: Bug Report
0
RadRibbonBar: Wrong submenu scaling in highdpi mode

Hello Telerik Team,

i hope you can help us with an scaling Problem on submenues.

On highdpi mode the width of submenues on the application menues grows.

We tried some ways to fix the size on dropdownopened event.

More details in attached gif and project.

 

1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 01 Jun 2021 08:23

Hello, Thomas,

The provided sample project and video are greatly appreciated. I can reproduce the problem on high dpi scaling. I have logged this issue in our Feedback portal by making this thread public. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.

I have also updated your Telerik Points.

To work around this you can set the MinimumSize property or use the solution provided in the project if it is suitable for you:

 private void radMenuItem1_DropDownOpened(object sender, EventArgs e)
        {
            var item = (sender as RadMenuItem);
            item.DropDown.MinimumSize = new Size(0, 0);
        }

I hope this helps. Should you have other questions do not hesitate to contact us.

Regards,
Nadya
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.