How to set FontAttributes within XAML to both Bold and Italic?
If anyone is looking for the code-behind solution:
element.FontAttributes = FontAttributes.Bold | FontAttributes.Italic;
<Style TargetType="Label">
<Setter Property="FontAttributes" Value="Bold, Italic" />
</Style>
FontAttributes
is a Flag, so you can pass multiple values.