TextElement.FontWeight Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l’épaisseur de police la plus grande pour le contenu de l’élément.
public:
property System::Windows::FontWeight FontWeight { System::Windows::FontWeight get(); void set(System::Windows::FontWeight value); };
public System.Windows.FontWeight FontWeight { get; set; }
member this.FontWeight : System.Windows.FontWeight with get, set
Public Property FontWeight As FontWeight
Valeur de propriété
Poids de police souhaité. La valeur par défaut est déterminée par la valeur de MessageFontWeight.
Exemples
L’exemple suivant montre comment définir l’attribut FontWeight , à l’aide Paragraph de l’exemple d’élément.
<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.
L’exemple suivant montre comment définir la FontWeight 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 , où l’objet est <object TextElement.FontWeight="value".../>
un élément objet (généralement un élément de flux) contenu dans un TextElement, et la valeur est l’une des valeurs de format chaîne de l’énumérationFontWeight. Dans le code, l’utilisation de la propriété jointe est prise en charge par les méthodes et SetFontWeight les GetFontWeight méthodes. L’utilisation de la propriété jointe n’est pas courante, car la plupart des éléments pouvant être contenus dans une TextElement propriété de prise en charge non attachée FontWeight
, que l’hôte de contenu utilise pour le rendu.
Informations sur les propriétés de dépendance
Champ d’identificateur | FontWeightProperty |
Propriétés de métadonnées définies sur true |
AffectsMeasure, AffectsRender, Inherits |