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.
Unplanned
Last Updated: 23 Dec 2022 14:14 by ADMIN
ADMIN
Created by: Vladi
Comments: 3
Category: Window
Type: Feature Request
5
The default Window control exposes an TaskbarItemInfo (https://msdn.microsoft.com/en-us/library/system.windows.window.taskbariteminfo%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396) which is useful for manipulating the taskbar item of the Window instance.
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.
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.
Unplanned
Last Updated: 04 Aug 2016 09:29 by ADMIN
Completed
Last Updated: 22 Jan 2016 13:04 by ADMIN
Completed
Last Updated: 12 Oct 2015 06:13 by Wade
Available in the 2015 Q3 Release.
Unplanned
Last Updated: 19 Sep 2016 14:11 by ADMIN
Completed
Last Updated: 25 Oct 2016 14:04 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 20:28 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Window
Type: Feature Request
4
As a <role> I want <ability> so that <benefit>.
Unplanned
Last Updated: 03 Jan 2017 20:45 by Scott
This is WPF only and not applicable for Silverlight.
Unplanned
Last Updated: 10 Feb 2021 13:39 by ADMIN
Created by: Rob A.
Comments: 2
Category: Window
Type: Feature Request
4

There should be an easy method to add/override the shadow of a RadWindow. Either via XAML attributes or code behind.

It would probably be good to allow the override of BlurRadius, Direction, and ShadowDepth.
For example (mockup):

<telerik:RadWindow x:Class="MyRadWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
        Header="Settings" WindowStartupLocation="CenterOwner" SizeToContent="True" ResizeMode="NoResize" MinWidth="500" MaxWidth="900"    DropShadowOverride="True" DropShadowOverrideBlurRadius="10" DropShadowOverrideDirection"-90", DropShadowOverrideDepth="3" DropShadowOverrideColor="White">
     
    <Grid>
 
    <!-- UI code -->
 
    </Grid>
 
</telerik:RadWindow>

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: 09 Oct 2018 08:20 by Dinko
Created by: Tino
Comments: 1
Category: Window
Type: Feature Request
3
Provide out of box text wrapping in predefined dialogs.

All Windows messageboxes from Win95 have this possibility. 
Telerik in 2018 does not have this possibility, except through additional templates and additional code. 

Why to buy 
Completed
Last Updated: 25 May 2015 14:02 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: 28 Mar 2018 11:23 by ADMIN
Completed
Last Updated: 16 Jul 2019 08:20 by ADMIN
Release LIB 2019.2722 (7/22/2019)
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: Window
Type: Bug Report
2