ComponentFactory.Krypton.Toolkit.KryptonListBox.OnBackColorChanged C# (CSharp) Méthode

OnBackColorChanged() protected méthode

Raises the BackColorChanged event.
protected OnBackColorChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
Résultat void
        protected override void OnBackColorChanged(EventArgs e)
        {
            if (BackColorChanged != null)
                BackColorChanged(this, e);
        }
KryptonListBox