9 references to Font
System.Web.DataVisualization (1)
Common\General\Chart.cs (1)
4216this._fontCache.Add(key, new Font(family, size, style));
System.Web.Mobile (1)
UI\MobileControls\Design\Util\ImageCreator.cs (1)
73boldFont = new Font(normalFont.FontFamily, 8, FontStyle.Bold)
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Control.cs (1)
2585new Font(this.Font.FontFamily, this.Font.Size * factor, this.Font.Style);
winforms\Managed\System\WinForms\Form.cs (1)
5121new Font(this.Font.FontFamily, this.Font.Size * factor, this.Font.Style);
System.Windows.Forms.DataVisualization (1)
Common\General\Chart.cs (1)
4216this._fontCache.Add(key, new Font(family, size, style));
System.Workflow.ComponentModel (4)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
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\WorkflowLayouts.cs (1)
599using (Font headerFooterFont = new Font(ambientTheme.Font.FontFamily, ambientTheme.Font.Size / this.scaling, ambientTheme.Font.Style))