2 writes to s_defaultFont
System.Windows.Forms (2)
System\Windows\Forms\Application.cs (2)
1406
s_defaultFont
= font;
1436
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
"/>.
384
internal static Font DefaultFont => s_defaultFontScaled ??
s_defaultFont
!;
1411
/// Scales <see cref="
s_defaultFont
"/> or <see cref="s_defaultFontScaled"/> if needed.
1415
if (
s_defaultFont
is null)
1420
if (
s_defaultFont
.IsSystemFont)
1428
Font newSystemFont = SystemFonts.GetFontByName(
s_defaultFont
.SystemFontName)!;
1429
if (
s_defaultFont
.Equals(newSystemFont))
1441
Font? font = ScaleHelper.ScaleToSystemTextSize(
s_defaultFont
);