ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnItemCheck C# (CSharp) 메소드

OnItemCheck() 보호된 메소드

Raises the ItemCheck event.
protected OnItemCheck ( System.Windows.Forms.ItemCheckEventArgs e ) : void
e System.Windows.Forms.ItemCheckEventArgs An ItemCheckEventArgs containing the event data.
리턴 void
        protected virtual void OnItemCheck(ItemCheckEventArgs e)
        {
            if (ItemCheck != null)
                ItemCheck(this, e);
        }
KryptonCheckedListBox