14 references to FontFamilyProperty
PresentationFramework (11)
System\Windows\Controls\Control.cs (2)
182
get { return (FontFamily) GetValue(
FontFamilyProperty
); }
183
set { SetValue(
FontFamilyProperty
, value); }
System\Windows\Controls\MenuItem.cs (1)
176
FontFamilyProperty
.OverrideMetadata(typeof(MenuItem), new FrameworkPropertyMetadata(SystemFonts.MessageFontFamily));
System\Windows\Controls\StickyNote.cs (4)
136
FontFamilyProperty
.OverrideMetadata(owner, new FrameworkPropertyMetadata(new PropertyChangedCallback(OnFontPropertyChanged)));
1472
innerControl.SetValue(
FontFamilyProperty
, GetValue(
FontFamilyProperty
));
1518
innerControl.ClearValue(
FontFamilyProperty
);
System\Windows\Controls\TextBox.cs (2)
62
FontFamilyProperty
.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback));
1878
FontFamily fontFamily = (FontFamily)this.GetValue(
FontFamilyProperty
);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2161
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)
1664
new PropertyAndTransferMode () { Property = Control.
FontFamilyProperty
, Mode = TransferMode.AlwaysTransfer },
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHostPropertyMap.cs (1)
139
adapter.SetValue(SWC.Control.
FontFamilyProperty
, Convert.ToSystemWindowsFontFamily(wfFont.FontFamily));
System\Windows\Integration\WindowsFormsHost.cs (1)
618
SWC.Control.
FontFamilyProperty
.AddOwner(typeof(WindowsFormsHost));