27 references to Bold
System.Drawing (3)
commonui\System\Drawing\Advanced\Font.cs (1)
622return(Style & FontStyle.Bold) != 0;
commonui\System\Drawing\FontConverter.cs (2)
170FontStyle validBits = FontStyle.Regular | FontStyle.Bold | FontStyle.Italic | FontStyle.Underline | FontStyle.Strikeout; 379style |= FontStyle.Bold;
System.Web.DataVisualization (1)
Common\General\Chart.cs (1)
4165get { return this.GetFont(DefaultFamilyName, 8, FontStyle.Bold); }
System.Web.Entity.Design (1)
System\Data\WebControls\Design\Util\TaskFormBase.cs (1)
166_captionLabel.Font = new Font(Font.FontFamily, Font.Size + 2.0f, FontStyle.Bold, Font.Unit);
System.Web.Mobile (1)
UI\MobileControls\Design\Util\ImageCreator.cs (1)
73boldFont = new Font(normalFont.FontFamily, 8, FontStyle.Bold)
System.Windows.Forms (15)
misc\GDI\WindowsFont.cs (3)
162this.logFont.lfWeight = (style & FontStyle.Bold) == FontStyle.Bold ? IntNativeMethods.FW_BOLD : IntNativeMethods.FW_NORMAL; 195this.style |= FontStyle.Bold;
winforms\Managed\System\WinForms\AxHost.cs (2)
4999style |= FontStyle.Bold; 5011style |= FontStyle.Bold;
winforms\Managed\System\WinForms\DataGridCaption.cs (1)
90this.dataGridFont = new Font(dataGrid.Font, FontStyle.Bold);
winforms\Managed\System\WinForms\DataGridParentRows.cs (2)
578textFont = new Font(font, FontStyle.Bold); 991textFont = new Font(font, FontStyle.Bold);
winforms\Managed\System\WinForms\ListView.cs (1)
2515odCacheFont = new Font(odCacheFont, FontStyle.Bold);
winforms\Managed\System\WinForms\PropertyGridInternal\DocComment.cs (1)
229m_labelTitle.Font = new Font(Font, FontStyle.Bold);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
1461fontBold = new Font(this.Font, FontStyle.Bold);
winforms\Managed\System\WinForms\RichTextBox.cs (1)
2301style |= FontStyle.Bold;
winforms\Managed\System\WinForms\TrustManagerMoreInformation.cs (2)
40lblMachineAccess.Font = lblPublisher.Font = lblInstallation.Font = lblLocation.Font = new Font(lblMachineAccess.Font, FontStyle.Bold); 439this.lblPublisher.Font = new Font(this.Font, FontStyle.Bold);
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (1)
845this.lblName.Font = new Font(this.Font, FontStyle.Bold);
System.Windows.Forms.DataVisualization (1)
Common\General\Chart.cs (1)
4165get { return this.GetFont(DefaultFamilyName, 8, FontStyle.Bold); }
System.Workflow.ComponentModel (5)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (2)
821this.artifactLabel.Font = new Font(this.Font.Name, this.Font.SizeInPoints, FontStyle.Bold); 1218using (Font helpFontBold = new Font(this.Font.FontFamily, this.Font.SizeInPoints, FontStyle.Bold))
AuthoringOM\Design\SequentialWorkflowHeaderFooter.cs (2)
195using (Font font = new Font(e.DesignerTheme.Font.FontFamily, e.DesignerTheme.Font.SizeInPoints + 1.0f, FontStyle.Bold)) 212using (Font font = new Font(e.DesignerTheme.Font.FontFamily, e.DesignerTheme.Font.SizeInPoints + 1.0f, (this.AssociatedDesigner.SmartTagVisible) ? FontStyle.Bold : FontStyle.Regular))
AuthoringOM\Design\Themes.cs (1)
3097this.boldFont = new Font(this.fontName, FontSize, FontStyle.Bold);