AccessText::FontFamily Property
.NET Framework (current version)
Gets or sets the font family to use with the AccessText element.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: [LocalizabilityAttribute(LocalizationCategory::Font, Modifiability = Modifiability::Unmodifiable)] property FontFamily^ FontFamily { FontFamily^ get(); void set(FontFamily^ value); }
Property Value
Type: System.Windows.Media::FontFamily^The font family to use. The default is the font that is determined by the MessageFontFamily metric.
The following example shows how to set properties in order to change the appearance of the text in an AccessText control.
<TextBox Name="textBox2" Width="50" Height="30"/> <Label Target="{Binding ElementName=textBox2}"> <AccessText Background="Red" Foreground="DarkSlateBlue" FontFamily="Arial Narrow" FontSize="16" FontStyle="Italic" FontWeight="Bold"> E_dit </AccessText> </Label>
.NET Framework
Available since 3.0
Available since 3.0
Show: