ImageGlass.ImageBox.OnTextBackColorChanged C# (CSharp) Method

OnTextBackColorChanged() protected method

Raises the TextBackColorChanged event.
protected OnTextBackColorChanged ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
return void
        protected virtual void OnTextBackColorChanged(EventArgs e)
        {
            EventHandler handler;

            Invalidate();

            handler = TextBackColorChanged;

            if (handler != null)
            {
                handler(this, e);
            }
        }
ImageBox