16 references to Underline
System.Drawing.Common (3)
System\Drawing\Font.cs (1)
67public bool Underline => (Style & FontStyle.Underline) != 0;
System\Drawing\FontConverter.cs (2)
242FontStyle validBits = FontStyle.Regular | FontStyle.Bold | FontStyle.Italic | FontStyle.Underline | FontStyle.Strikeout; 361style |= FontStyle.Underline;
System.Windows.Forms (13)
System\Windows\Forms\ActiveX\AxHost.cs (1)
3777style |= FontStyle.Underline;
System\Windows\Forms\Controls\Labels\FocusableLabel.cs (1)
42Font = new Font(Font, FontStyle.Underline);
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
533using Font alwaysUnderlined = new Font(Font, Font.Style | FontStyle.Underline);
System\Windows\Forms\Controls\Labels\LinkUtilities.cs (6)
205style |= FontStyle.Underline; 209style &= ~FontStyle.Underline; 220hoverStyle |= FontStyle.Underline; 224hoverStyle &= ~FontStyle.Underline; 232linkStyle |= FontStyle.Underline; 236linkStyle &= ~FontStyle.Underline;
System\Windows\Forms\Controls\ListView\ListView.cs (1)
2804subItemFont = new Font(item.SubItems[0].Font, FontStyle.Underline);
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
2190style |= FontStyle.Underline;
System\Windows\Forms\Rendering\FontCache.Data.cs (2)
96lfUnderline = (font.Style & FontStyle.Underline) == FontStyle.Underline ? True : False,