13 references to FontStyle
System.Windows.Forms.Analyzers (2)
System\Windows\Forms\Analyzers\ApplicationConfig.FontDescriptor.cs (2)
13public FontDescriptor(string fontName, float emSize, FontStyle style, GraphicsUnit unit) 23public FontStyle Style { get; }
System.Windows.Forms.Analyzers.CSharp (11)
System\Windows\Forms\CSharp\Generators\ApplicationConfiguration\ProjectFileReader.FontConverter.cs (11)
35FontStyle fontStyle = FontStyle.Regular; 104fontStyle |= (FontStyle)Enum.Parse(typeof(FontStyle), styleText, true); 107FontStyle validBits = FontStyle.Regular | FontStyle.Bold | FontStyle.Italic | FontStyle.Underline | FontStyle.Strikeout; 110throw new InvalidEnumArgumentException(nameof(style), (int)fontStyle, typeof(FontStyle));