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

OnBackgroundImageChanged() private method

private OnBackgroundImageChanged ( EventArgs e ) : void
e System.EventArgs
return void
		protected virtual void OnBackgroundImageChanged(EventArgs e) {
			EventHandler eh = (EventHandler)(Events [BackgroundImageChangedEvent]);
			if (eh != null)
				eh (this, e);
			for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackgroundImageChanged(e);
		}
Control