Completed
Last Updated: 08 Feb 2016 16:33 by ADMIN
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.
Completed
Last Updated: 12 Apr 2016 10:47 by ADMIN
When the attached TextOptions.TextFormattingMode="Display" property is set to the RadWindow the window stops auto resizing its size according to the size of its content.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
As a workaround you can set:  window.CaptionHeight= 0;
Declined
Last Updated: 10 Feb 2021 13:39 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.
Completed
Last Updated: 08 Aug 2016 13:32 by ADMIN
If a ContentControl is placed inside the control and the ResizeMode is set to NoResize the SizeToContent doesn't take effect.

As a workaround all you need to do is set the ResizeMode to NoResize in the Loaded event of the ContentControl.
Completed
Last Updated: 13 Jan 2016 15:00 by ADMIN
Currently the template of the dialogs should be customized:
http://www.telerik.com/community/code-library/wpf/window/how-to-modify-the-alert-dialog-icon.aspx

Available in the 2016 Q1 Release: Added an IconTemplate property that provides an easier way to change the predefined dialogs' exclamation/question mark images.
Completed
Last Updated: 25 Oct 2016 14:04 by ADMIN
Unplanned
Last Updated: 19 Sep 2016 14:11 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:29 by ADMIN
Completed
Last Updated: 22 Jan 2016 13:04 by ADMIN
Completed
Last Updated: 13 Nov 2019 15:50 by ADMIN
Release LIB 2019.3.1118
The Window doesn't resize correctly when dragged from the primary monitor (with taskbar) and docked to the top of the screen of a secondary monitor (no taskbar) in order to maximize it and "Show window contents while dragging" Windows system setting is disabled.
Completed
Last Updated: 12 Oct 2015 06:13 by Wade
Available in the 2015 Q3 Release.
Completed
Last Updated: 05 Jul 2019 09:33 by ADMIN
Release LIB 2019.2.708 (7/8/2019)
This happens when RadWindowInteropHelper.AllowTransparency is set to False and RadWindow is implemented as UserControl. The Window need to be maximized firstly on the main screen and then on the secondary in order for issue to be reproduced.

The issue also affects the ToolWindow that RadDocking uses for its floating Pane. In order to reproduce the problem, the primary monitor needs to have its DPI higher than the secondary one.
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.
Completed
Last Updated: 26 Jun 2019 05:22 by ADMIN
Release LIB 2019.2.701 (7/1/2019)
The header buttons elements are not on the proper places when the window is on a monitor with different DPI. To reproduce this the DPI of the monitors should be different for example 125% (main) and 150% (secondary). Also, to reproduce this you will need to enable the DPI awareness of the application by setting the dpiAware and dpiAwareness settings in the app.manifest file.
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;
            }
}
1 2 3 4