14 references to FontFamilyProperty
PresentationFramework (11)
System\Windows\Controls\Control.cs (2)
172
get { return (FontFamily) GetValue(
FontFamilyProperty
); }
173
set { SetValue(
FontFamilyProperty
, value); }
System\Windows\Controls\MenuItem.cs (1)
165
FontFamilyProperty
.OverrideMetadata(typeof(MenuItem), new FrameworkPropertyMetadata(SystemFonts.MessageFontFamily));
System\Windows\Controls\StickyNote.cs (4)
108
FontFamilyProperty
.OverrideMetadata(owner, new FrameworkPropertyMetadata(new PropertyChangedCallback(OnFontPropertyChanged)));
1418
innerControl.SetValue(
FontFamilyProperty
, GetValue(
FontFamilyProperty
));
1470
innerControl.ClearValue(
FontFamilyProperty
);
System\Windows\Controls\TextBox.cs (2)
54
FontFamilyProperty
.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback));
1872
FontFamily fontFamily = (FontFamily)this.GetValue(
FontFamilyProperty
);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2196
DependencyProperty dp = System.Windows.Controls.Control.
FontFamilyProperty
;
System\Windows\Markup\KnownTypes.cs (1)
1727
return System.Windows.Controls.Control.
FontFamilyProperty
;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonHelper.cs (1)
1638
new PropertyAndTransferMode () { Property = Control.
FontFamilyProperty
, Mode = TransferMode.AlwaysTransfer },
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHostPropertyMap.cs (1)
134
adapter.SetValue(SWC.Control.
FontFamilyProperty
, Convert.ToSystemWindowsFontFamily(wfFont.FontFamily));
System\Windows\Integration\WindowsFormsHost.cs (1)
597
SWC.Control.
FontFamilyProperty
.AddOwner(typeof(WindowsFormsHost));