System.Windows.Forms.Control.OnResizeInternal C# (CSharp) 메소드

OnResizeInternal() 개인적인 메소드

private OnResizeInternal ( EventArgs e ) : void
e System.EventArgs
리턴 void
		internal virtual void OnResizeInternal (EventArgs e) {
			PerformLayout(this, "Bounds");

			EventHandler eh = (EventHandler)(Events [ResizeEvent]);
			if (eh != null)
				eh (this, e);
		}
Control