ComponentFactory.Krypton.Toolkit.KryptonListBox.OnPaletteChanged C# (CSharp) Method

OnPaletteChanged() protected method

Raises the PaletteChanged event.
protected OnPaletteChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected override void OnPaletteChanged(EventArgs e)
        {
            _listBox.Recreate();
            _listBox.RefreshItemSizes();
            _listBox.Invalidate();
            base.OnPaletteChanged(e);
        }
KryptonListBox