Control.FontStyle 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 style.
public:
property System::Windows::FontStyle FontStyle { System::Windows::FontStyle get(); void set(System::Windows::FontStyle value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.FontStyle FontStyle { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.FontStyle : System.Windows.FontStyle with get, set
Public Property FontStyle As FontStyle
A FontStyle value. The default is Normal.
- Attributes
The following example shows how to set the font style property of a control.
<Button Name="btn4" FontStyle="Normal"
Click="ChangeFontStyle">
FontStyle
</Button>
void ChangeFontStyle(object sender, RoutedEventArgs e)
{
if (btn4.FontStyle == FontStyles.Italic)
{
btn4.FontStyle = FontStyles.Normal;
btn4.Content = "FontStyle";
}
else
{
btn4.FontStyle = FontStyles.Italic;
btn4.Content = "Control font style changes from Normal to Italic.";
}
}
Private Sub ChangeFontStyle(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (btn4.FontStyle = FontStyles.Italic) Then
btn4.FontStyle = FontStyles.Normal
btn4.Content = "FontStyle"
Else
btn4.FontStyle = FontStyles.Italic
btn4.Content = "Control font style changes from Normal to Italic."
End If
End Sub
This property only affects a control whose template uses the FontStyle property as a parameter. On other controls, this property has no impact.
Item | Value |
---|---|
Identifier field | FontStyleProperty |
Metadata properties set to true |
AffectsMeasure, AffectsRender, Inherits |
Applies to
제품 | 버전 |
---|---|
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9, 10 |
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.