MarkupProperty.IsKey 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.
When overridden in a derived class, determines whether this MarkupProperty represents the key used by the MarkupObject to store the item in a dictionary.
public:
virtual property bool IsKey { bool get(); };
public virtual bool IsKey { get; }
member this.IsKey : bool
Public Overridable ReadOnly Property IsKey As Boolean
Property Value
true
if this property represents a key; otherwise, false
.
Remarks
The default behavior is to return false
.
When IsKey is true
, PropertyDescriptor and DependencyProperty are null
.
XAML will use the identified property as an x:Key
attribute.