LocalizabilityAttribute.Category 属性

定义

获取本地化特性的目标值的类别设置。

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的任何子节点。

适用于

另请参阅