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