XamlSetValueEventArgs.Handled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that determines whether a caller that is using the XamlSetValueEventArgs can use the values without having to call CallBase().
public:
property bool Handled { bool get(); void set(bool value); };
public bool Handled { get; set; }
member this.Handled : bool with get, set
Public Property Handled As Boolean
Property Value
true
if the values were useful and calling CallBase() is not necessary; otherwise, false
.
Remarks
Use this property as a sentinel for cases where a callback referenced as XamlSetMarkupExtensionHandler or XamlSetTypeConverterHandler has code pathways that has processed the set value attempt.