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