ImageGlass.ImageBox.OnPixelGridColorChanged C# (CSharp) Method

OnPixelGridColorChanged() protected method

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

            Invalidate();

            handler = PixelGridColorChanged;

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