Control.FontStyle Property
.NET Framework (current version)
Gets or sets the font style.
Assembly: PresentationFramework (in PresentationFramework.dll)
The following example shows how to set the font style property of a control.
<Button Name="btn4" FontStyle="Normal" Click="ChangeFontStyle"> FontStyle </Button>
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
.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: