ComponentFactory.Krypton.Toolkit.KryptonTreeView.OnAfterSelect C# (CSharp) 메소드

OnAfterSelect() 보호된 메소드

Raises the AfterSelect event.
protected OnAfterSelect ( TreeViewEventArgs e ) : void
e System.Windows.Forms.TreeViewEventArgs An TreeViewEventArgs that contains the event data.
리턴 void
        protected virtual void OnAfterSelect(TreeViewEventArgs e)
        {
            if (AfterSelect != null)
                AfterSelect(this, e);
        }
KryptonTreeView