Completed
Last Updated: 30 Apr 2018 20:46 by Robert
ADMIN
Hristo
Created on: 31 Jan 2018 13:57
Category: UI Framework
Type: Bug Report
2
FIX. RadCheckBox - the check mark is not scaled in the Fluent theme in an application with an enabled HDPI
Workaround: use a bigger image 
Me.radCheckBox1.ButtonElement.CheckMarkPrimitive.CheckElement.ShouldPaint = False
    Dim dpi As Point = NativeMethods.GetSystemDpi()
    Dim scale As Integer = dpi.X
    If scale >= 300 Then
        Me.radCheckBox1.ButtonElement.CheckMarkPrimitive.Image = Image.FromFile("..\..\check-mark.png")
    ElseIf scale >= 200 Then
        '...
    Else
        '...
    End If
3 comments
Robert
Posted on: 30 Apr 2018 20:46
Ah, good. Thank you.
ADMIN
Dimitar
Posted on: 30 Apr 2018 12:48
Hello,
Fix of this bug is scheduled to be released in R2 2018.
Robert
Posted on: 30 Mar 2018 13:12
It seems to be indicated that this bug has been fixed (status=completed). Has it been released? I have the latest build (2018.1.220.40) but the check mark is still not scaling at higher resolutions when using the Fluent theme. Is there a new setting that I'm missing? See the attached pic taken at 200%.
Attached Files: