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

OnLocationChanged() protected method

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