Unplanned
Last Updated: 24 Jun 2022 11:35 by Bruno
Double-taping on the corner of the window multiple times displays a gray border. At this point, minimizing the main window results in a blurred rectangle remaining where the RadWindow used to be.
Unplanned
Last Updated: 01 Aug 2018 15:54 by ADMIN
Unplanned
Last Updated: 21 Dec 2017 16:46 by ADMIN
To resolve this remove the MinWidth setting. You can set it back when the window is restored.

private double myMinWidth;
private void Window_WindowStateChanged(object sender, System.EventArgs e)
{
            var window = (RadWindow)sender;
            if (window.WindowState == WindowState.Minimized)
            {
                this.myMinWidth = window.MinWidth;
                window.MinWidth = 0;
            }
            else
            {
                window.MinWidth = this.myMinWidth;
            }
}
Unplanned
Last Updated: 16 Nov 2016 11:44 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:30 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:30 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:29 by LittleDragon
When the Window is opening or resizing and Winforms controls are placed inside its content the content flickers.
Unplanned
Last Updated: 04 Aug 2016 09:29 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:29 by ADMIN
It can be reproduced with the Show method of the window or with Dock, ToolWindows and the save - load functionality.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
Popup shows behind RadWindow when using two monitors in Windows XP.
Unplanned
Last Updated: 19 Sep 2016 14:11 by ADMIN
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
As a workaround you can set:  window.CaptionHeight= 0;
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
Maximizing RadWindow from the header button shows a window with the size of the content if SizeToContent = true. If you maximize with double click on header it is ok.