3 writes to s_defaultFont
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
1639s_defaultFont = Application.DefaultFont ?? SystemFonts.MessageBoxFont; 12619s_defaultFont = font; 12630s_defaultFont = Application.DefaultFont; // Application.s_defaultFontScaled ?? Application.s_defaultFont
5 references to s_defaultFont
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (5)
1637if (s_defaultFont is null) 1640Debug.Assert(s_defaultFont is not null, "defaultFont wasn't set!"); 1643return s_defaultFont; 12614if (s_defaultFont is not null) // we need to check only if s_defaultFont already set 12617if (!s_defaultFont.Equals(font)) // the font has changed