AccessText.FontSize 属性

定义

获取或设置要用于 AccessText 元素的字体大小。

public:
 property double FontSize { double get(); void set(double value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.FontSizeConverter))]
[System.Windows.Localizability(System.Windows.LocalizationCategory.None)]
public double FontSize { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.FontSizeConverter))>]
[<System.Windows.Localizability(System.Windows.LocalizationCategory.None)>]
member this.FontSize : double with get, set
Public Property FontSize As Double

属性值

Double

要使用的字体大小。 默认值是由 MessageFontSize 规格确定的字体大小。

属性

示例

以下示例演示如何设置属性以更改控件中 AccessText 文本的外观。

<TextBox Name="textBox2" Width="50" Height="30"/>
<Label Target="{Binding ElementName=textBox2}">
  <AccessText Background="Red" Foreground="DarkSlateBlue"    
              FontFamily="Arial Narrow" FontSize="16" FontStyle="Italic" 
              FontWeight="Bold">
    E_dit
  </AccessText>
</Label>

注解

依赖项属性信息

标识符字段 FontSizeProperty
元数据属性设置为 true AffectsMeasureAffectsRenderInherits

XAML 属性用法

<object FontSize="double"/>  
- or -  
<object FontSize ="qualifiedDouble"/>  

XAML 值

双精度
Double

值的字符串表示形式 Double 。 此值解释为与设备无关的单元, (1/96 英寸) 测量。 字符串不需要显式包含小数点。 例如,可以指定值 1

qualifiedDouble
一个 双精度 值,后跟以下单元声明字符串之一:pxin``cm``pt

px (默认) 是设备无关的单位 (每单元 1/96 英寸)

in 为英寸;1in==96px

cm 为厘米;1cm== (96/2.54) px

pt 为磅;1pt== (96/72) px

注意 在许多情况下,可以将双精度设置为 Auto;但是,不能将此属性设置为 Auto

适用于

另请参阅