Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Modifiability Enumeration

 

Specifies the modifiability value of a LocalizabilityAttribute for a binary XAML (BAML) class or class member.

Namespace:   System.Windows
Assembly:  PresentationCore (in PresentationCore.dll)

public enum Modifiability

Member nameDescription
Inherit

Targeted value modifiability is inherited from its parent node.

Modifiable

Targeted value is modifiable by localizers.

Unmodifiable

Targeted value is not modifiable by localizers.

A LocalizabilityAttribute attribute can be applied to a class, property, or method.

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

The following code example shows the modifiability value of localization attributes defined for a button.

<!-- 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>

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft