Unplanned
Last Updated: 01 Apr 2024 12:51 by ADMIN
erwin
Created on: 01 Apr 2024 10:25
Category: ListView
Type: Bug Report
1
RadListView: Borders are not drawn on HDPI (150%)

Borders are not drawn on HDPI (150%)


5 comments
ADMIN
Dinko | Tech Support Engineer
Posted on: 01 Apr 2024 12:51

Hi Erwin,

I am not sure what you mean here. Can you give me more details regarding your form structure so that I could try to find a suitable solution?

Regards,
Dinko | Tech Support Engineer
Progress Telerik

A brand new ThemeBuilder course was just added to the Virtual Classroom. The training course was designed to help you get started with ThemeBuilder for styling Telerik and Kendo UI components for your applications. You can check it out at https://learn.telerik.com
erwin
Posted on: 01 Apr 2024 11:17
Wouldn't the suggested workaround cause a misalignment of the right border of 1px with all other controls on the same dialog that have the same width?
ADMIN
Dinko | Tech Support Engineer
Posted on: 01 Apr 2024 10:53

Hello Erwin,

Indeed in the case of having a large number of controls, applying this will require an extra effort. Until this is resolved, what else you could try is to create a custom class that derives from our controls and apply the workaround in the constructor. Then you can replace our controls with custom ones. This will make it easier to apply the changes to all controls. 

Regards,
Dinko | Tech Support Engineer
Progress Telerik

A brand new ThemeBuilder course was just added to the Virtual Classroom. The training course was designed to help you get started with ThemeBuilder for styling Telerik and Kendo UI components for your applications. You can check it out at https://learn.telerik.com
erwin
Posted on: 01 Apr 2024 10:39
Well the workaround is not doable for 1000+ controls throughout my application and later change back without accidentally breaking existing code when the problem is hopefully fixed.
ADMIN
Dinko | Tech Support Engineer
Posted on: 01 Apr 2024 10:34

Hello Erwin,

Thank you for reporting this.

As a workaround, you can add 1 px Padding to the RadListView (or RadTreeView) control.

public RadForm1()
{
    InitializeComponent();
    this.radListView1.Padding = new System.Windows.Forms.Padding(1);
    this.radTreeView1.Padding = new System.Windows.Forms.Padding(1);
}

Regards,
Dinko | Tech Support Engineer
Progress Telerik

A brand new ThemeBuilder course was just added to the Virtual Classroom. The training course was designed to help you get started with ThemeBuilder for styling Telerik and Kendo UI components for your applications. You can check it out at https://learn.telerik.com