14 references to FontFamilyProperty
PresentationFramework (11)
System\Windows\Controls\Control.cs (2)
173
get { return (FontFamily) GetValue(
FontFamilyProperty
); }
174
set { SetValue(
FontFamilyProperty
, value); }
System\Windows\Controls\MenuItem.cs (1)
166
FontFamilyProperty
.OverrideMetadata(typeof(MenuItem), new FrameworkPropertyMetadata(SystemFonts.MessageFontFamily));
System\Windows\Controls\StickyNote.cs (4)
120
FontFamilyProperty
.OverrideMetadata(owner, new FrameworkPropertyMetadata(new PropertyChangedCallback(OnFontPropertyChanged)));
1456
innerControl.SetValue(
FontFamilyProperty
, GetValue(
FontFamilyProperty
));
1502
innerControl.ClearValue(
FontFamilyProperty
);
System\Windows\Controls\TextBox.cs (2)
55
FontFamilyProperty
.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback));
1871
FontFamily fontFamily = (FontFamily)this.GetValue(
FontFamilyProperty
);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2159
DependencyProperty dp = System.Windows.Controls.Control.
FontFamilyProperty
;
System\Windows\Markup\KnownTypes.cs (1)
1734
return System.Windows.Controls.Control.
FontFamilyProperty
;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonHelper.cs (1)
1659
new PropertyAndTransferMode () { Property = Control.
FontFamilyProperty
, Mode = TransferMode.AlwaysTransfer },
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHostPropertyMap.cs (1)
137
adapter.SetValue(SWC.Control.
FontFamilyProperty
, Convert.ToSystemWindowsFontFamily(wfFont.FontFamily));
System\Windows\Integration\WindowsFormsHost.cs (1)
616
SWC.Control.
FontFamilyProperty
.AddOwner(typeof(WindowsFormsHost));