Unplanned
Last Updated: 17 Oct 2024 14:30 by Yurii
Yurii
Created on: 16 Oct 2024 11:07
Category: GridView
Type: Bug Report
1
RadGridView: ConditionalFormatting dialog elements are overlapping in the Windows 11 theme

ConditionalFormatting dialog elements are overlapping in the Windows 11 theme. The text is clipped on the right:

2 comments
Yurii
Posted on: 17 Oct 2024 14:30

Hello Dinko,

Thank you, - it works!

I adjusted Location(s) of Controls and window looks good now.

Best Regards,

Yurii Borachok

ADMIN
Dinko | Tech Support Engineer
Posted on: 16 Oct 2024 11:10

Hello Yurii,

Thank you for reporting this. A possible solution is to manually modify the elements in the dialog. In the ConditionalFormattingFormShown event, we can get the form and modify its size and element position. In the following example, I will demonstrate how to extend the size of the form:

rivate Sub ConditionalFormattingFormShownEventHandler(sender As Object, e As EventArgs)
    Dim conditionalFormattingForm = TryCast(sender, ConditionalFormattingForm)
    If conditionalFormattingForm IsNot Nothing Then
        conditionalFormattingForm.Size = New Size(590, 641)
        conditionalFormattingForm.AutoSize = False
    End If
End Sub

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.