ImageGlass.ImageBox.OnSizeToFitChanged C# (CSharp) Method

OnSizeToFitChanged() protected method

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

            AdjustLayout();

            handler = SizeToFitChanged;

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