Completed
Last Updated: 01 Oct 2014 12:15 by ADMIN
ADMIN
George
Created on: 08 Jul 2014 10:17
Category: Dock
Type: Bug Report
0
FIX. RadDock - AutoHidden window's splitter has visual glitches. It is bigger and there is a black border inside
To reproduce:

Add a RadDock with ToolWindow, AutoHide the window and open it. You will see that the splitter is big (12px width) and has a black border on the top left corner

Workaround:

Subscribe to the DockStateChanged event to hide the problematic element:

void dock_DockStateChanged(object sender, DockWindowEventArgs e)
{
    if (e.DockWindow.DockState == DockState.AutoHide)
    {
        ((e.DockWindow as ToolWindow).TabStripItem.TabPanel.Parent as AutoHideTabStrip).SplitPanelElement.Children[2].Children[0].Visibility = ElementVisibility.Collapsed;
    }
}
0 comments