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

OnBackColorChanged() private method

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