TextBlock.FontWeight プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
TextBlock に対して、最上位レベルのフォントの太さを取得または設定します。
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
プロパティ値
適切なフォントの太さを指定する FontWeights クラスのメンバー。 既定値は MessageFontWeight 値で決定されます。
例
次の例は、 要素の 属性を設定する FontWeight 方法を TextBlock 示しています。
<TextBlock
Name="textBlock"
Background="AntiqueWhite"
Foreground="Navy"
FontFamily="Century Gothic"
FontSize="12"
FontStretch="UltraExpanded"
FontStyle="Italic"
FontWeight="UltraBold"
LineHeight="Auto"
Padding="5,10,5,10"
TextAlignment="Center"
TextWrapping="Wrap"
Typography.NumeralStyle="OldStyle"
Typography.SlashedZero="True"
>
<Run Background="LightGreen">Text run 1.</Run>
<LineBreak/><Run Background="LightBlue">Text run 2.</Run>
<LineBreak/><Run Background="LightYellow">Text run 3.</Run>
</TextBlock>
次の例では、FontWeight プロパティをプログラムで設定する方法を示しています。
TextBlock textBlock = new TextBlock(new Run("A bit of text content..."));
textBlock.Background = Brushes.AntiqueWhite;
textBlock.Foreground = Brushes.Navy;
textBlock.FontFamily = new FontFamily("Century Gothic");
textBlock.FontSize = 12;
textBlock.FontStretch = FontStretches.UltraExpanded;
textBlock.FontStyle = FontStyles.Italic;
textBlock.FontWeight = FontWeights.UltraBold;
textBlock.LineHeight = Double.NaN;
textBlock.Padding = new Thickness(5, 10, 5, 10);
textBlock.TextAlignment = TextAlignment.Center;
textBlock.TextWrapping = TextWrapping.Wrap;
textBlock.Typography.NumeralStyle = FontNumeralStyle.OldStyle;
textBlock.Typography.SlashedZero = true;
Dim textBlock As New TextBlock(New Run("A bit of text content..."))
textBlock.Background = Brushes.AntiqueWhite
textBlock.Foreground = Brushes.Navy
textBlock.FontFamily = New FontFamily("Century Gothic")
textBlock.FontSize = 12
textBlock.FontStretch = FontStretches.UltraExpanded
textBlock.FontStyle = FontStyles.Italic
textBlock.FontWeight = FontWeights.UltraBold
textBlock.LineHeight = Double.NaN
textBlock.Padding = New Thickness(5, 10, 5, 10)
textBlock.TextAlignment = TextAlignment.Center
textBlock.TextWrapping = TextWrapping.Wrap
textBlock.Typography.NumeralStyle = FontNumeralStyle.OldStyle
textBlock.Typography.SlashedZero = True
注釈
FontWeight子要素のすべての設定は、この最上位の設定をオーバーライドします。
フォントの太さの有効な値の一覧については、 クラスを FontWeights 参照してください。
この依存関係プロパティには、添付プロパティの使用法もあります。 XAML では、使用法は です <object TextBlock.FontWeight="value".../>
。 object は 内 TextBlockに含まれるオブジェクト要素 (通常はフロー要素) であり、 値 は クラスのプロパティの文字列形式の値の FontWeights 1 つです。 コードでは、添付プロパティの使用法は と SetFontWeightでGetFontWeightサポートされています。 添付プロパティの使用方法は一般的ではありません。これは、 に含めることができるほとんどの要素が、レンダリングに TextBlock 使用する類似の非アタッチ FontWeight
プロパティを TextBlock サポートするためです。
依存プロパティ情報
識別子フィールド | FontWeightProperty |
に設定されたメタデータ プロパティ true |
AffectsMeasure, AffectsRender, Inherits |
適用対象
.NET