WeifenLuo.WinFormsUI.Docking.DockContent.OnDockStateChanged C# (CSharp) Méthode

OnDockStateChanged() protected méthode

protected OnDockStateChanged ( EventArgs e ) : void
e System.EventArgs
Résultat void
        protected virtual void OnDockStateChanged(EventArgs e)
        {
            EventHandler handler = (EventHandler)Events[DockStateChangedEvent];
            if (handler != null)
                handler(this, e);
        }