ConditionalFormatting dialog elements are overlapping in the Windows 11 theme. The text is clipped on the right:
Hello Dinko,
Thank you, - it works!
I adjusted Location(s) of Controls and window looks good now.
Best Regards,
Yurii Borachok
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.