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

OnLocationChanged() 보호된 메소드

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