//TODO: remove "bool select"
        KryptonDockingFloatspace AddToFloatspace(DockWindow window, bool select, Point location, Size clientSize)
        {
            AddDockWindowInternal(window, true);

            var floatingWindow = dockingManager.AddFloatingWindow("DockingFloating", new KryptonPage[] { window.KryptonPage }, location, clientSize);

            //TEST: no need selection
            //if( select )
            //	SelectDockWindow( window );

            return(floatingWindow.FloatspaceElement);
        }