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

OnBackgroundImageLayoutChanged() private method

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