14 references to Normal
PresentationCore (6)
Core\CSharp\MS\Internal\FontFace\FontDifferentiator.cs (1)
58if (fontStyle != FontStyles.Normal)
Core\CSharp\MS\Internal\Shaping\CompositeTypefaceMetrics.cs (1)
87FontStyles.Normal,
Core\CSharp\System\Windows\FontStyles.cs (1)
41fontStyle = FontStyles.Normal;
Core\CSharp\System\Windows\Media\FontFamily.cs (2)
356FontStyle style = FontStyles.Normal; 440FontStyle style = FontStyles.Normal;
Core\CSharp\System\Windows\Media\Typeface.cs (1)
64FontStyles.Normal,
PresentationFramework (7)
src\Framework\System\windows\Documents\TextEditorCharacters.cs (1)
213FontStyle fontStyle = (propertyValue != DependencyProperty.UnsetValue && (FontStyle)propertyValue == FontStyles.Italic) ? FontStyles.Normal : FontStyles.Italic;
src\Framework\System\Windows\SystemFonts.cs (6)
56return (SystemParameters.IconMetrics.lfFont.lfItalic != 0) ? FontStyles.Italic : FontStyles.Normal; 135return (SystemParameters.NonClientMetrics.lfCaptionFont.lfItalic != 0) ? FontStyles.Italic : FontStyles.Normal; 215return (SystemParameters.NonClientMetrics.lfSmCaptionFont.lfItalic != 0) ? FontStyles.Italic : FontStyles.Normal; 294return (SystemParameters.NonClientMetrics.lfMenuFont.lfItalic != 0) ? FontStyles.Italic : FontStyles.Normal; 372return (SystemParameters.NonClientMetrics.lfStatusFont.lfItalic != 0) ? FontStyles.Italic : FontStyles.Normal; 453return (SystemParameters.NonClientMetrics.lfMessageFont.lfItalic != 0) ? FontStyles.Italic : FontStyles.Normal;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (1)
144inputTextBox.FontStyle = FontStyles.Normal;