Control.FontFamily Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the font family of the control.
public:
property System::Windows::Media::FontFamily ^ FontFamily { System::Windows::Media::FontFamily ^ get(); void set(System::Windows::Media::FontFamily ^ value); };
[System.ComponentModel.Bindable(true)]
[System.Windows.Localizability(System.Windows.LocalizationCategory.Font)]
public System.Windows.Media.FontFamily FontFamily { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.Windows.Localizability(System.Windows.LocalizationCategory.Font)>]
member this.FontFamily : System.Windows.Media.FontFamily with get, set
Public Property FontFamily As FontFamily
Property Value
A font family. The default is the system dialog font.
- Attributes
Examples
The following example shows how to set the font family property of a control.
<Button Name="btn2" FontFamily="Arial"
Click="ChangeFontFamily">
FontFamily
</Button>
void ChangeFontFamily(object sender, RoutedEventArgs e)
{
ffamily = btn2.FontFamily;
str = ffamily.ToString();
if (str == ("Arial Black"))
{
btn2.FontFamily = new FontFamily("Arial");
btn2.Content = "FontFamily";
}
else
{
btn2.FontFamily = new FontFamily("Arial Black");
btn2.Content = "Control font family changes from Arial to Arial Black.";
}
}
Private Sub ChangeFontFamily(ByVal Sender As Object, ByVal e As RoutedEventArgs)
ffamily = btn2.FontFamily
str = ffamily.ToString()
If (str = ("Arial Black")) Then
btn2.FontFamily = New FontFamily("Arial")
btn2.Content = "FontFamily"
Else
btn2.FontFamily = New FontFamily("Arial Black")
btn2.Content = "Control font family changes from Arial to Arial Black."
End If
End Sub
Remarks
This property only affects a control whose template uses the FontFamily property as a parameter. On other controls, this property has no impact.
Dependency Property Information
Identifier field | FontFamilyProperty |
Metadata properties set to true |
AffectsMeasure, AffectsRender, Inherits |
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET