8 references to Bold
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
DependencyObjectExtensions.cs (1)
19
dependencyObject.SetValue(TextElement.FontWeightProperty, textProperties.Bold ? FontWeights.
Bold
: FontWeights.Normal);
Microsoft.VisualStudio.LanguageServices (2)
FindReferences\RoslynDefinitionBucket.cs (1)
120
inline.SetValue(TextElement.FontWeightProperty, FontWeights.
Bold
);
UnusedReferences\Dialog\UnusedReferencesTableProvider.ColumnDefinitions.cs (1)
74
FontWeight = isBold ? FontWeights.
Bold
: FontWeights.Normal
PresentationCore (1)
System\Windows\FontWeights.cs (1)
106
fontWeight = FontWeights.
Bold
;
PresentationFramework (3)
System\windows\Documents\TextEditorCharacters.cs (2)
191
FontWeight fontWeight = (propertyValue != DependencyProperty.UnsetValue && (FontWeight)propertyValue == FontWeights.
Bold
) ? FontWeights.Normal : FontWeights.
Bold
;
System\windows\Documents\TextEditorContextMenu.cs (1)
493
text.FontWeight = FontWeights.
Bold
;
WindowsFormsIntegration (1)
System\Windows\Integration\Convert.cs (1)
229
return sdFont.Bold ? FontWeights.
Bold
: FontWeights.Normal;