18 references to Underline
System.Drawing (3)
commonui\System\Drawing\Advanced\Font.cs (1)
720return(Style & FontStyle.Underline) != 0;
commonui\System\Drawing\FontConverter.cs (2)
170FontStyle validBits = FontStyle.Regular | FontStyle.Bold | FontStyle.Italic | FontStyle.Underline | FontStyle.Strikeout; 388style |= FontStyle.Underline;
System.Windows.Forms (14)
misc\GDI\WindowsFont.cs (3)
164this.logFont.lfUnderline = (style & FontStyle.Underline) == FontStyle.Underline ? True : False; 203this.style |= FontStyle.Underline;
winforms\Managed\System\WinForms\AxHost.cs (1)
5005style |= FontStyle.Underline;
winforms\Managed\System\WinForms\DataGrid.cs (1)
8501linkFont = new Font(Font, FontStyle.Underline);
winforms\Managed\System\WinForms\LinkLabel.cs (1)
650Font alwaysUnderlined = new Font(Font, Font.Style | FontStyle.Underline);
winforms\Managed\System\WinForms\LinkUtilities.cs (6)
199style |= FontStyle.Underline; 202style &= ~FontStyle.Underline; 210hoverStyle |= FontStyle.Underline; 213hoverStyle &= ~FontStyle.Underline; 220linkStyle |= FontStyle.Underline; 223linkStyle &= ~FontStyle.Underline;
winforms\Managed\System\WinForms\ListView.cs (1)
2722subItemFont = new Font(item.SubItems[0].Font, FontStyle.Underline);
winforms\Managed\System\WinForms\RichTextBox.cs (1)
2307style |= FontStyle.Underline;
System.Workflow.Activities (1)
Designers\StateDesigner.Layouts.cs (1)
609using (Font font = new Font(designerTheme.Font, FontStyle.Underline | designerTheme.Font.Style))