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

OnLocationChanged() 개인적인 메소드

private OnLocationChanged ( EventArgs e ) : void
e System.EventArgs
리턴 void
		protected virtual void OnLocationChanged(EventArgs e) {
			OnMove(e);
			EventHandler eh = (EventHandler)(Events [LocationChangedEvent]);
			if (eh != null)
				eh (this, e);
		}
Control