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