OnRedundantChildDock() protected method

protected OnRedundantChildDock ( DockBase dock ) : void
dock DockBase
return void
Ejemplo n.º 1
0
        protected virtual void DoRedundancyCheck()
        {
            if (!IsEmpty)
            {
                return;
            }

            DockBase pDockParent = Parent as DockBase;

            if (null == pDockParent)
            {
                return;
            }

            pDockParent.OnRedundantChildDock(this);
        }