2 writes to s_defaultFont
System.Windows.Forms (2)
System\Windows\Forms\Application.cs (2)
1560
s_defaultFont
= font;
1590
s_defaultFont
= newSystemFont;
8 references to s_defaultFont
System.Windows.Forms (8)
System\Windows\Forms\Application.cs (8)
29
/// Scaled version of non-system <see cref="
s_defaultFont
"/>.
458
internal static Font DefaultFont => s_defaultFontScaled ??
s_defaultFont
!;
1565
/// Scales <see cref="
s_defaultFont
"/> or <see cref="s_defaultFontScaled"/> if needed.
1569
if (
s_defaultFont
is null)
1574
if (
s_defaultFont
.IsSystemFont)
1582
Font newSystemFont = SystemFonts.GetFontByName(
s_defaultFont
.SystemFontName)!;
1583
if (
s_defaultFont
.Equals(newSystemFont))
1595
Font? font = ScaleHelper.ScaleToSystemTextSize(
s_defaultFont
);