Habanero.Faces.Win.TreeViewWin.OnAfterCheck C# (CSharp) Метод

OnAfterCheck() защищенный Метод

Raises the E:System.Windows.Forms.TreeView.AfterCheck event.
protected OnAfterCheck ( TreeViewEventArgs e ) : void
e System.Windows.Forms.TreeViewEventArgs A that contains the event data.
Результат void
        protected override void OnAfterCheck(TreeViewEventArgs e)
        {
            base.OnAfterCheck(e);
            if (this.AfterCheck == null) return;
            Base.TreeViewEventArgs treeViewEventArgs = new Base.TreeViewEventArgs(GetITreeNode(e.Node), (TreeViewAction)e.Action);
            this.AfterCheck(this, treeViewEventArgs);
        }