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

OnAfterExpand() protected method

Raises the E:System.Windows.Forms.TreeView.AfterExpand event.
protected OnAfterExpand ( TreeViewEventArgs e ) : void
e System.Windows.Forms.TreeViewEventArgs A that contains the event data.
return void
        protected override void OnAfterExpand(TreeViewEventArgs e)
        {
            base.OnAfterExpand(e);
            if (this.AfterExpand == null) return;
            Base.TreeViewEventArgs treeViewEventArgs = new Base.TreeViewEventArgs(GetITreeNode(e.Node), (TreeViewAction)e.Action);
            this.AfterExpand(this, treeViewEventArgs);
        }
        ///<summary>