ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnBackgroundImageChanged C# (CSharp) Method

OnBackgroundImageChanged() protected method

Raises the BackgroundImageChanged event.
protected OnBackgroundImageChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected override void OnBackgroundImageChanged(EventArgs e)
        {
            if (BackgroundImageChanged != null)
                BackgroundImageChanged(this, e);
        }
KryptonCheckedListBox