共用方式為


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 Attribute Usage

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

XAML 值

Double
Double

值的字串表示 Double 。 此值會解譯為裝置獨立單位, (1/96 英吋) 測量。 字串不需要明確包含小數點。 例如,您可以指定 的值 1

qualifiedDouble
後面接著下列其中一個單位宣告字串的 雙精度 浮點數: px 、、 incmpt

px (預設) 是裝置獨立單位 (每單位 1/96 英吋)

in 為英吋;1in==96px

cm 為公分;1cm== (96/2.54) px

pt 為點;1pt== (96/72) px

注意 在許多情況下,您可以將 double 設定為 Auto ;不過,您無法將這個屬性設定為 Auto

適用於

另請參閱