Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408
Martin Ivanov
Created on: 15 Feb 2024 08:56
Category: Docking
Type: Bug Report
0
Docking: Floating panes are always topmost and display over every other applications

This happens because in the current version of Telerik, the IsTopmost of the ToolWindow that host the floating pane is set to True. That was needed for a related new functionality, but it brings a major behavioral change in the RadDocking control.

To work this around, you can subscribe to the ToolWindowCreated event of RadDocking and set the IsTopmost property of the creating ToolWindow to False.

private void RadDocking_ToolWindowCreated(object sender, Telerik.Windows.Controls.Docking.ElementCreatedEventArgs e)
{
    var window = (ToolWindow)e.CreatedElement;
    window.IsTopmost = false;
}

0 comments