3 writes to s_defaultFont
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
1634s_defaultFont = Application.DefaultFont ?? SystemFonts.MessageBoxFont; 12598s_defaultFont = font; 12609s_defaultFont = Application.DefaultFont; // Application.s_defaultFontScaled ?? Application.s_defaultFont
5 references to s_defaultFont
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (5)
1632if (s_defaultFont is null) 1635Debug.Assert(s_defaultFont is not null, "defaultFont wasn't set!"); 1638return s_defaultFont; 12593if (s_defaultFont is not null) // we need to check only if s_defaultFont already set 12596if (!s_defaultFont.Equals(font)) // the font has changed