Completed
Last Updated: 06 Jan 2017 09:14 by ADMIN
ADMIN
Dimitar
Created on: 07 Nov 2016 08:36
Category: Dock
Type: Bug Report
1
FIX. RadDock - when a layout is loaded from XML the close button of the floating windows is disabled.
To reproduce:
- Load a layout with a floating window in it. 
- The close button is disabled.


Workaround:
private void RadDock1_LoadedFromXml(object sender, EventArgs e)
{
    foreach (FloatingWindow item in radDock1.FloatingWindows)
    {
        item.UpdateCloseButton();
    }
}

0 comments