LocalizabilityAttribute.Category 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得當地語系化屬性之目標值的分類設定。
public:
property System::Windows::LocalizationCategory Category { System::Windows::LocalizationCategory get(); };
public System.Windows.LocalizationCategory Category { get; }
member this.Category : System.Windows.LocalizationCategory
Public ReadOnly Property Category As LocalizationCategory
屬性值
當地語系化屬性的分類設定。
範例
下列程式碼範例顯示為按鈕定義的當地語系化屬性類別設定。
<!-- Define localization attributes for the button.
- The content is visible to the localizer and can be changed.
- The font family property is visible to the localizer but cannot be changed. -->
<Button
FontFamily="Microsoft San Serif"
Localization.Attributes=
"$Content(Button Readable Modifiable) FontFamily(Font Readable Unmodifiable)" >
your company name here
</Button>
備註
下表顯示當地語系化屬性的可修改性設定。
類別設定 | 意義 |
---|---|
None | 資源不屬於標準分類。 |
Text | 冗長的描述性文字片段。 |
Title | 單行文字,例如標題。 |
Label | 簡短文字字串,例如控制項標籤。 |
Button | Button 或相關的控制項。 |
CheckBox | CheckBox 或相關的控制項。 |
ComboBox | ComboBox或相關的控制項,例如 ComboBoxItem 。 |
ListBox | ListBox或相關的控制項,例如 ListBoxItem 。 |
Menu | Menu或相關的控制項,例如 MenuItem 。 |
RadioButton | RadioButton 或相關的控制項。 |
ToolTip | ToolTip 或相關的控制項。 |
Hyperlink | Hyperlink 或相關的控制項。 |
TextFlow | FlowDocument可包含文字的 或其他面板。 |
XmlData | XML 資料。 |
Font | 字型相關資料,例如字型系列、字型樣式或字型大小。 |
Inherit | 繼承父節點的類別。 |
Ignore | 請勿將此資源當地語系化。 這不適用於資源的任何子節點。 |
NeverLocalize | 請勿將此資源或其類別設定 Inherit 為 的任何子節點當地語系化。 |