ImageGlass.ImageBox.OnShowPixelGridChanged C# (CSharp) Method

OnShowPixelGridChanged() protected method

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

            Invalidate();

            handler = ShowPixelGridChanged;

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