System.Windows.Forms.CheckBox.OnAppearanceChanged C# (CSharp) Method

OnAppearanceChanged() protected method

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