SuperPutty.ApplicationPanel.OnResize C# (CSharp) Method

OnResize() protected method

Refresh the hosted applications window when the parent changes size
protected OnResize ( EventArgs e ) : void
e System.EventArgs
return void
        protected override void OnResize(EventArgs e)
        {
            // if valid
            if (ExternalProcessCaptured)
            {
                // if not minimizing && visible
                if (this.Height > 0 && this.Width > 0 && this.Visible)
                {
                    this.MoveWindow("OnResize");
                }
            }
            base.OnResize(e);
        }