Control.FontStretch Свойство
Определение
Получение или установка межсимвольного интервала.Gets or sets the degree to which a font is condensed or expanded on the screen.
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; }
member this.FontStretch : System.Windows.FontStretch with get, set
Public Property FontStretch As FontStretch
Значение свойства
Значение FontStretch.A FontStretch value. Значение по умолчанию — Normal.The default is Normal.
- Атрибуты
Примеры
В следующем примере показано, как задать свойство растяжения шрифта элемента управления.The following example shows how to set the font stretch property of a control. Возможные значения растяжения см. FontStretchesв разделе.For possible stretch values, see 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 использует свойство в качестве параметра.This property only affects a control whose template uses the FontStretch property as a parameter. В других элементах управления это свойство не оказывает влияния.On other controls, this property has no impact.
Сведения о свойстве зависимостейDependency Property Information
Поле идентификатораIdentifier field | FontStretchProperty |
Свойства метаданных, для которых задано значениеtrue Metadata properties set to true |
AffectsMeasure, AffectsRender, InheritsAffectsMeasure, AffectsRender, Inherits |