Habanero.Faces.Win.TreeViewWin.OnAfterCheck C# (CSharp) Method

OnAfterCheck() protected method

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.
return 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);
        }