Completed
Last Updated: 18 Dec 2018 14:16 by ADMIN
Scheduled for:
The fix for this issue will be available with LIB (version 2018.3.1224) scheduled for publishing on Monday, 24th December 2018.


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 
Unplanned
Last Updated: 01 Aug 2018 15:54 by ADMIN
Unplanned
Last Updated: 15 Mar 2018 15:07 by Vladimir
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

			
Unplanned
Last Updated: 28 Mar 2018 11:23 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;
            }
}
Completed
Last Updated: 17 Nov 2020 10:39 by ADMIN
As an example Windows 10 OS Window gets different Opacity for its Title and Buttons when Inactive (open two Window-s and make them appear one behind the other -- the one in the background of the active window is inactive). Our Office2016 and Office2016 Touch themes are inspired by Windows 10 OS as we officially stated so we might mind adding this visual appearance on our side for RadWindow.
Completed
Last Updated: 07 Jun 2018 06:49 by ADMIN
When EventBinding is used in XAML to bind commands to events of Window or RadRibbonWindow (as it inherits Window), InvalidOperationException is thrown in design-time.

Workarounds: 
1. Attach an event handler directly to the events of the Window (RadRibbonWindow)
2. (more MVVM-friendly) use Behavior to attach the appropriate event handler.
Unplanned
Last Updated: 16 Nov 2016 11:44 by ADMIN
Declined
Last Updated: 06 Oct 2016 12:44 by ADMIN
The issue is reproducible when the DPI is changed at runtime(new feature introduced with Windows 10) and therefore the application is not notified for the change. In order the application to be aware of the change the user have to logout and sign in (or the application should be DPI aware).
Unplanned
Last Updated: 04 Aug 2016 09:30 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:30 by ADMIN
Completed
Last Updated: 23 Feb 2016 07:57 by ADMIN
When creating a Word plug-in project for example, after showing a RadWindow instance moving that window by dragging it causes NullReferenceException.

Available in LIB version 2016.1.222, it will be also available in the 2016 Q2 Release.
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: 19 Feb 2016 07:53 by Georges
Available in the 2016 Q1 SP1 Release.
Completed
Last Updated: 23 Nov 2015 15:08 by ADMIN
If RadWindow has its Width set to a value greater that 50% of the screen and that window is snapped to the left or right, performing minimize and then restore leads to incorrect normal size .

Available in LIB version 2015.3.1123, it will be also available in the 2016 Q1 release.
Completed
Last Updated: 04 Nov 2015 14:09 by ADMIN
Available in LIB version 2015.3.1012, it will be also available in the 2015 Q3 SP.