TextElement.FontStyle Propriété

Définition

Obtient ou définit le style de police pour le contenu de l’élément.

public:
 property System::Windows::FontStyle FontStyle { System::Windows::FontStyle get(); void set(System::Windows::FontStyle value); };
public System.Windows.FontStyle FontStyle { get; set; }
member this.FontStyle : System.Windows.FontStyle with get, set
Public Property FontStyle As FontStyle

Valeur de propriété

Style de police souhaité. La valeur par défaut est déterminée par la valeur MessageFontStyle.

Exemples

L’exemple suivant montre comment définir l’attribut FontStyle , en utilisant Paragraph comme élément d’exemple.

<Paragraph
  FontFamily="Century Gothic, Courier New"  
  FontSize="16pt"
  FontStretch="UltraExpanded"
  FontStyle="Italic"
  FontWeight="DemiBold"
>
  <Run>
    This text will use the Century Gothic font (if available), with fallback to Courier New.  It 
    will render with a font size of 16 points in ultra-expanded demi-bold italic.
  </Run>
</Paragraph>

La figure suivante montre comment l’exemple précédent s’affiche.

Capture d’écran : Texte avec propriétés de texte définie

L’exemple suivant montre comment définir la FontStyle propriété par programmation.

Run run = new Run(
    "This text will use the Century Gothic font (if available), with fallback to Courier New."
    + "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.");
Paragraph par = new Paragraph(run);

par.FontFamily = new FontFamily("Century Gothic, Courier New");
par.FontSize = 16;
par.FontStretch = FontStretches.UltraExpanded;
par.FontStyle = FontStyles.Italic;
par.FontWeight = FontWeights.DemiBold;
Dim run As New Run("This text will use the Century Gothic font (if available), with fallback to Courier New." & "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.")
Dim par As New Paragraph(run)

With par
    .FontFamily = New FontFamily("Century Gothic, Courier New")
    .FontSize = 16
    .FontStretch = FontStretches.UltraExpanded
    .FontStyle = FontStyles.Italic
    .FontWeight = FontWeights.DemiBold
End With

Remarques

Cette propriété de dépendance a également une utilisation de propriété jointe. En XAML, l’utilisation est <object TextElement.FontStyle="value".../>, où object est un élément d’objet (généralement un élément de flux) contenu dans un TextElement, et value est l’un des noms de propriété au format chaîne dans la FontStyles classe . Dans le code, l’utilisation de la propriété jointe est prise en charge par les GetFontStyle méthodes et SetFontStyle . L’utilisation de la propriété jointe n’est pas courante, car la plupart des éléments qui peuvent être contenus dans une TextElement propriété prennent en charge une propriété non attachée FontStyle analogue, que l’hôte de contenu utilise pour le rendu.

Informations sur les propriétés de dépendance

Champ Identificateur FontStyleProperty
Propriétés de métadonnées définies sur true AffectsMeasure, AffectsRender, Inherits

S’applique à