2 writes to s_defaultFontScaled
System.Windows.Forms (2)
System\Windows\Forms\Application.cs (2)
1423s_defaultFontScaled = null; 1445s_defaultFontScaled = font;
5 references to s_defaultFontScaled
System.Windows.Forms (5)
System\Windows\Forms\Application.cs (5)
384internal static Font DefaultFont => s_defaultFontScaled ?? s_defaultFont!; 1411/// Scales <see cref="s_defaultFont"/> or <see cref="s_defaultFontScaled"/> if needed. 1422s_defaultFontScaled?.Dispose(); 1442if (font is null || !font.Equals(s_defaultFontScaled)) // change s_defaultFontScaled only if needed 1444s_defaultFontScaled?.Dispose();