Localization Class

Definition

The Localization class defines attached properties for localization attributes and comments.

public ref class Localization abstract sealed
public static class Localization
type Localization = class
Public Class Localization
Inheritance
Localization

Examples

The following code example shows localization attributes and comments defined for a text block.

<!-- Define localization attributes and comments for the text block.
    - The content is visible to the localizer and can be changed.
    - The font size property is visible to the localizer and can be changed.
    - The comment specifies that the trademark font size should be used. -->
<TextBlock
  FontSize="14"
  Localization.Attributes=
    "$Content(Text Readable Modifiable) FontSize(Font Readable Modifiable)"
  Localization.Comments=
    "$Content(Trademark) FontSize(Trademark font size)" >
  your company name here
</TextBlock>

Remarks

Markup authors may have specific requirements for elements in Extensible Application Markup Language (XAML) UI, such as constraints for text length, font family, or font size. Localizers need to know about them in order to provide consistent localization. Localization properties can be specified inside Extensible Application Markup Language (XAML), allowing authors to communicate their localization needs to localizers. These properties provide rules and hints for localization, which can be used to modify the application. There are two types of localization properties:

  • Localization attributes. The attributes specify which resources, such as FontFamily, are to be localized.

  • Localization comments. The comments are free-form text that the markup author includes.

For more information on how to use these localization properties, see Localization Attributes and Comments.

Fields

AttributesProperty

Identifies the Attributes attached property.

CommentsProperty

Identifies the Comments attached property.

Attached Properties

Attributes
Comments

Methods

GetAttributes(Object)

Gets the value of the AttributesProperty attached property from a specified element.

GetComments(Object)

Gets the value of the CommentsProperty attached property from a specified element.

SetAttributes(Object, String)

Sets the AttributesProperty attached property for the specified element.

SetComments(Object, String)

Sets the CommentsProperty attached property to the specified element.

Applies to