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

OnCausesValidationChanged() private method

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