Completed
Last Updated: 05 Feb 2018 13:51 by Dimitar
ADMIN
Dimitar
Created on: 27 Jul 2016 09:23
Category: Buttons
Type: Bug Report
1
FIX. RadCheckBox - the control is not scaled when the dpi scaling is changed.
To reproduce:
- Create a dpi aware application and add a checkbox to it. 
- Change your DPI setting to 200% and start the application.
- The checkmark is not scaled only the text is. 

Workaround:
this.radCheckBox2.ButtonElement.CheckMarkPrimitive.CheckElement.UseFixedCheckSize = false;
this.radCheckBox2.ButtonElement.CheckMarkPrimitive.CheckElement.MinSize = new Size(100, 100);
0 comments