LocalizabilityAttribute.Modifiability プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ローカリゼーション属性のターゲット値の modifiability 設定を取得または設定します。
public:
property System::Windows::Modifiability Modifiability { System::Windows::Modifiability get(); void set(System::Windows::Modifiability value); };
public System.Windows.Modifiability Modifiability { get; set; }
member this.Modifiability : System.Windows.Modifiability with get, set
Public Property Modifiability As Modifiability
プロパティ値
ローカリゼーション属性の modifiability 設定。
例
次のコード例は、ボタンに対して定義されたローカリゼーション属性の変更可能性設定を示しています。
<!-- 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>
注釈
次の表は、ローカリゼーション属性の変更可能性設定を示しています。
変更可能性の設定 | 説明 |
---|---|
Modifiable | ターゲット値はローカライザーで変更可能です。 |
Unmodifiable | ターゲット値はローカライザーで変更不可能です。 |
Inherit | ターゲット値の変更可能性は、その親ノードから継承されます。 |