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

OnBackgroundImageLayoutChanged() protected method

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