2 writes to s_defaultFontScaled
System.Windows.Forms (2)
System\Windows\Forms\Application.cs (2)
1577s_defaultFontScaled = null; 1599s_defaultFontScaled = font;
5 references to s_defaultFontScaled
System.Windows.Forms (5)
System\Windows\Forms\Application.cs (5)
458internal static Font DefaultFont => s_defaultFontScaled ?? s_defaultFont!; 1565/// Scales <see cref="s_defaultFont"/> or <see cref="s_defaultFontScaled"/> if needed. 1576s_defaultFontScaled?.Dispose(); 1596if (font is null || !font.Equals(s_defaultFontScaled)) // change s_defaultFontScaled only if needed 1598s_defaultFontScaled?.Dispose();