System.Windows.Forms.XplatUIX11.GetAutoScaleSize C# (CSharp) Method

GetAutoScaleSize() private method

private GetAutoScaleSize ( Font font ) : SizeF
font Font
return SizeF
		internal override SizeF GetAutoScaleSize(Font font) {
			Graphics	g;
			float		width;
			string		magic_string = "The quick brown fox jumped over the lazy dog.";
			double		magic_number = 44.549996948242189;

			g = Graphics.FromHwnd(FosterParent);

			width = (float) (g.MeasureString (magic_string, font).Width / magic_number);
			return new SizeF(width, font.Height);
		}
XplatUIX11