ImageGlass.ImageBox.OnGridColorChanged C# (CSharp) Method

OnGridColorChanged() protected method

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

            InitializeGridTile();

            handler = GridColorChanged;

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