3 writes to s_defaultFont
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
1832s_defaultFont = Application.DefaultFont ?? SystemFonts.MessageBoxFont; 13365s_defaultFont = font; 13376s_defaultFont = Application.DefaultFont; // Application.s_defaultFontScaled ?? Application.s_defaultFont
5 references to s_defaultFont
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (5)
1830if (s_defaultFont is null) 1833Debug.Assert(s_defaultFont is not null, "defaultFont wasn't set!"); 1836return s_defaultFont; 13360if (s_defaultFont is not null) // we need to check only if s_defaultFont already set 13363if (!s_defaultFont.Equals(font)) // the font has changed