10 references to Normal
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
DependencyObjectExtensions.cs (1)
19dependencyObject.SetValue(TextElement.FontWeightProperty, textProperties.Bold ? FontWeights.Bold : FontWeights.Normal);
Microsoft.VisualStudio.LanguageServices (1)
UnusedReferences\Dialog\UnusedReferencesTableProvider.ColumnDefinitions.cs (1)
74FontWeight = isBold ? FontWeights.Bold : FontWeights.Normal
PresentationCore (6)
MS\Internal\FontFace\FontDifferentiator.cs (1)
49if (fontWeight != FontWeights.Normal)
MS\Internal\FontFace\MatchingStyle.cs (1)
44(weight.ToOpenTypeWeight() - FontWeights.Normal.ToOpenTypeWeight()) / 100.0 * FontWeightScale
System\Windows\FontWeights.cs (1)
137fontWeight = FontWeights.Normal;
System\Windows\Media\FontFamily.cs (2)
351FontWeight weight = FontWeights.Normal; 433FontWeight weight = FontWeights.Normal;
System\Windows\Media\Typeface.cs (1)
62FontWeights.Normal,
PresentationFramework (1)
System\windows\Documents\TextEditorCharacters.cs (1)
191FontWeight fontWeight = (propertyValue != DependencyProperty.UnsetValue && (FontWeight)propertyValue == FontWeights.Bold) ? FontWeights.Normal : FontWeights.Bold;
WindowsFormsIntegration (1)
System\Windows\Integration\Convert.cs (1)
229return sdFont.Bold ? FontWeights.Bold : FontWeights.Normal;