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