ImageGlass.ImageBox.OnSizeModeChanged C# (CSharp) Method

OnSizeModeChanged() protected method

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

            AdjustLayout();

            handler = SizeModeChanged;

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