LocalizabilityAttribute::Modifiability Property
.NET Framework (current version)
Gets or sets the modifiability setting of the localization attribute's targeted value.
Assembly: PresentationCore (in PresentationCore.dll)
public: property Modifiability Modifiability { Modifiability get(); void set(Modifiability value); }
Property Value
Type: System.Windows::ModifiabilityThe modifiability setting of the localization attribute.
The following table shows the modifiability settings of the localization attribute.
Modifiability setting | Meaning |
|---|---|
Targeted value is modifiable by localizers. | |
Targeted value is not modifiable by localizers. | |
Targeted value's modifiability is inherited from its parent node. |
The following code example shows the modifiability setting 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
Available since 3.0
Show: