OnRedundantChildDock() protected méthode

protected OnRedundantChildDock ( DockBase dock ) : void
dock DockBase
Résultat void
Exemple #1
0
        protected virtual void DoRedundancyCheck()
        {
            if (!IsEmpty)
            {
                return;
            }

            DockBase pDockParent = Parent as DockBase;

            if (null == pDockParent)
            {
                return;
            }

            pDockParent.OnRedundantChildDock(this);
        }