System.Windows.Forms.CheckBox.OnAppearanceChanged C# (CSharp) Méthode

OnAppearanceChanged() protected méthode

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