ARCed.UI.DockOutlineBase.Show C# (CSharp) Method

Show() public method

public Show ( ) : void
return void
        public void Show()
        {
            this.SaveOldValues();
            this.SetValues(Rectangle.Empty, null, DockStyle.None, -1);
            this.TestChange();
        }

Same methods

DockOutlineBase::Show ( DockPane pane, DockStyle dock ) : void
DockOutlineBase::Show ( DockPane pane, int contentIndex ) : void
DockOutlineBase::Show ( DockPanel dockPanel, DockStyle dock, bool fullPanelEdge ) : void
DockOutlineBase::Show ( Rectangle floatWindowBounds ) : void

Usage Example

Example #1
0
        internal void TestDrop(IDockDragSource dragSource, DockOutlineBase dockOutline)
        {
            if (!dragSource.CanDockTo(this))
                return;

            Point ptMouse = MousePosition;

            HitTestResult hitTestResult = this.GetHitTest(ptMouse);
            if (hitTestResult.HitArea == HitTestArea.Caption)
                dockOutline.Show(this, -1);
            else if (hitTestResult.HitArea == HitTestArea.TabStrip && hitTestResult.Index != -1)
                dockOutline.Show(this, hitTestResult.Index);
        }
All Usage Examples Of ARCed.UI.DockOutlineBase::Show