ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnItemCheck C# (CSharp) Méthode

OnItemCheck() protected méthode

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