System.Windows.Forms.Control.OnLocationChanged C# (CSharp) Method

OnLocationChanged() private method

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