ImageGlass.ImageBox.OnBackColorChanged C# (CSharp) Method

OnBackColorChanged() protected method

Raises the System.Windows.Forms.Control.BackColorChanged event.
protected OnBackColorChanged ( EventArgs e ) : void
e System.EventArgs /// An that contains the event data. ///
return void
        protected override void OnBackColorChanged(EventArgs e)
        {
            base.OnBackColorChanged(e);

            Invalidate();
        }
ImageBox