3 writes to s_defaultFont
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
1566s_defaultFont = Application.DefaultFont ?? SystemFonts.MessageBoxFont; 12527s_defaultFont = font; 12538s_defaultFont = Application.DefaultFont; // Application.s_defaultFontScaled ?? Application.s_defaultFont
5 references to s_defaultFont
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (5)
1564if (s_defaultFont is null) 1567Debug.Assert(s_defaultFont is not null, "defaultFont wasn't set!"); 1570return s_defaultFont; 12522if (s_defaultFont is not null) // we need to check only if s_defaultFont already set 12525if (!s_defaultFont.Equals(font)) // the font has changed