Control.FontStretch プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
画面上でのフォントの縮小率または拡大率を取得または設定します。
public:
property System::Windows::FontStretch FontStretch { System::Windows::FontStretch get(); void set(System::Windows::FontStretch value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.FontStretch FontStretch { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.FontStretch : System.Windows.FontStretch with get, set
Public Property FontStretch As FontStretch
プロパティ値
FontStretch 値。 既定値は、Normal です。
- 属性
例
次の例は、コントロールのフォント ストレッチ プロパティを設定する方法を示しています。 可能なストレッチ値については、次を参照してください FontStretches。
<Button Name="btn10" FontStretch ="Condensed"
Click="ChangeFontStretch" TabIndex="3">
FontStretch
</Button>
void ChangeFontStretch(object sender, RoutedEventArgs e)
{
if (btn10.FontStretch == FontStretches.Condensed)
{
btn10.FontStretch = FontStretches.Normal;
btn10.Content = "Control FontStretch changes from Condensed to Normal.";
}
else
{
btn10.FontStretch = FontStretches.Condensed;
btn10.Content = "FontStretch";
}
}
Private Sub ChangeFontStretch(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (btn10.FontStretch = FontStretches.Condensed) Then
btn10.FontStretch = FontStretches.Normal
btn10.Content = "Control FontStretch changes from Condensed to Normal."
Else
btn10.Content = "FontStretch"
btn10.FontStretch = FontStretches.Condensed
End If
End Sub
注釈
このプロパティは、テンプレートでプロパティをパラメーターとして使用 FontStretch するコントロールにのみ影響します。 その他のコントロールでは、このプロパティは影響しません。
依存プロパティ情報
識別子フィールド | FontStretchProperty |
に設定されたメタデータ プロパティ true |
AffectsMeasure, AffectsRender, Inherits |