ComponentFactory.Krypton.Docking.KryptonAutoHiddenSlidePanel.OnDockspaceSeparatorMoveRect C# (CSharp) Method

OnDockspaceSeparatorMoveRect() private method

private OnDockspaceSeparatorMoveRect ( object sender, SplitterMoveRectMenuArgs e ) : void
sender object
e ComponentFactory.Krypton.Toolkit.SplitterMoveRectMenuArgs
return void
        private void OnDockspaceSeparatorMoveRect(object sender, SplitterMoveRectMenuArgs e)
        {
            if (!_dockspaceSlide.ContainsFocus)
            {
                _dockspaceSlide.Select();
                Application.DoEvents();
            }

            if (SplitterMoveRect != null)
                SplitterMoveRect(sender, e);
        }