XamlReaderSettings.IgnoreUidsOnPropertyElements Property

Definition

Gets or sets a value that specifies whether the XAML reader should ignore values for x:Uid attributes that exist on property elements.

public:
 property bool IgnoreUidsOnPropertyElements { bool get(); void set(bool value); };
public bool IgnoreUidsOnPropertyElements { get; set; }
member this.IgnoreUidsOnPropertyElements : bool with get, set
Public Property IgnoreUidsOnPropertyElements As Boolean

Property Value

true if the reader should ignore values for x:Uid attributes on property elements. false if the reader should process x:Uid attributes on property elements. The default is false.

Remarks

During localization, the x:Uid attribute is used to identify elements in markup so that localization tools can process XAML elements as discrete entities for localization. Attributes do not usually appear on property elements in XAML. However, x:Uid is an exception because some usages put localized text in a property element as content, instead of as a separate object that can receive its own x:Uid. Setting an IgnoreUidsOnPropertyElements value to true enables a stricter mode. The default value of false continues to process property element x:Uid attributes.

Applies to