System.Windows.Forms.Form.OnFontChanged C# (CSharp) Method

OnFontChanged() private method

private OnFontChanged ( EventArgs e ) : void
e System.EventArgs
return void
		protected override void OnFontChanged(EventArgs e) {
			base.OnFontChanged (e);
			
			if (!autoscale_base_size_set) {
				SizeF sizef = Form.GetAutoScaleSize (Font);
				autoscale_base_size = new Size ((int)Math.Round (sizef.Width), (int)Math.Round (sizef.Height));
			}
		}
Form