ImageGlass.ImageBox.OnGridColorAlternateChanged C# (CSharp) Method

OnGridColorAlternateChanged() protected method

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

            InitializeGridTile();

            handler = GridColorAlternateChanged;

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