RadGridView: saving the layout stored the columns' width scaled according to the DPI scaling
Populate a RadGridView with data, move the form to a monitor with greater than 100% DPI scaling. Save the layout and then load it again. You will notice that the columns' width is increased each time.
Workaround:
Sub New() RadControl.EnableDpiScaling = False InitializeComponent() End Sub