System.Windows.Forms.Control.OnFontChanged C# (CSharp) Méthode

OnFontChanged() private méthode

private OnFontChanged ( EventArgs e ) : void
e System.EventArgs
Résultat void
		protected virtual void OnFontChanged(EventArgs e) {
			EventHandler eh = (EventHandler)(Events [FontChangedEvent]);
			if (eh != null)
				eh (this, e);
			for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentFontChanged(e);
		}
Control