Show / Hide Table of Contents

Class FrameworkPropertyMetadata

Dependency property metadata

Inheritance
System.Object
FrameworkPropertyMetadata
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: EmptyKeys.UserInterface
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class FrameworkPropertyMetadata

Constructors

FrameworkPropertyMetadata(Object)

Initializes a new instance of the FrameworkPropertyMetadata class.

Declaration
public FrameworkPropertyMetadata(object defaultValue)
Parameters
Type Name Description
System.Object defaultValue

The default value.

FrameworkPropertyMetadata(Object, FrameworkPropertyMetadataOptions)

Initializes a new instance of the FrameworkPropertyMetadata class.

Declaration
public FrameworkPropertyMetadata(object defaultValue, FrameworkPropertyMetadataOptions options)
Parameters
Type Name Description
System.Object defaultValue

The default value.

FrameworkPropertyMetadataOptions options

The options.

FrameworkPropertyMetadata(Object, FrameworkPropertyMetadataOptions, PropertyChangedCallback)

Initializes a new instance of the FrameworkPropertyMetadata class.

Declaration
public FrameworkPropertyMetadata(object defaultValue, FrameworkPropertyMetadataOptions options, PropertyChangedCallback propertyChangedCallback)
Parameters
Type Name Description
System.Object defaultValue

The default value.

FrameworkPropertyMetadataOptions options

The options.

PropertyChangedCallback propertyChangedCallback

The property changed callback.

FrameworkPropertyMetadata(Object, FrameworkPropertyMetadataOptions, PropertyChangedCallback, CoerceValueCallback)

Initializes a new instance of the FrameworkPropertyMetadata class.

Declaration
public FrameworkPropertyMetadata(object defaultValue, FrameworkPropertyMetadataOptions options, PropertyChangedCallback propertyChangedCallback, CoerceValueCallback coerceValueCallback)
Parameters
Type Name Description
System.Object defaultValue

The default value.

FrameworkPropertyMetadataOptions options

The options.

PropertyChangedCallback propertyChangedCallback

The property changed callback.

CoerceValueCallback coerceValueCallback

The coerce value callback.

Properties

AffectsArrange

Gets or sets a value indicating whether [affects arrange].

Declaration
public bool AffectsArrange { get; set; }
Property Value
Type Description
System.Boolean

true if [affects arrange]; otherwise, false.

AffectsMeasure

Gets or sets a value indicating whether [affects measure].

Declaration
public bool AffectsMeasure { get; set; }
Property Value
Type Description
System.Boolean

true if [affects measure]; otherwise, false.

AffectsParentArrange

Gets or sets a value indicating whether [affects parent arrange].

Declaration
public bool AffectsParentArrange { get; set; }
Property Value
Type Description
System.Boolean

true if [affects parent arrange]; otherwise, false.

AffectsParentMeasure

Gets or sets a value indicating whether [affects parent measure].

Declaration
public bool AffectsParentMeasure { get; set; }
Property Value
Type Description
System.Boolean

true if [affects parent measure]; otherwise, false.

AffectsRender

Gets or sets a value indicating whether [affects render].

Declaration
public bool AffectsRender { get; set; }
Property Value
Type Description
System.Boolean

true if [affects render]; otherwise, false.

BindsTwoWayByDefault

Gets or sets a value indicating whether [binds two way by default].

Declaration
public bool BindsTwoWayByDefault { get; set; }
Property Value
Type Description
System.Boolean

true if [binds two way by default]; otherwise, false.

CoerceValueCallback

Gets or sets the coerce value callback.

Declaration
public CoerceValueCallback CoerceValueCallback { get; set; }
Property Value
Type Description
CoerceValueCallback

The coerce value callback.

DefaultValue

Gets or sets the default value.

Declaration
public object DefaultValue { get; set; }
Property Value
Type Description
System.Object

The default value.

IsInherited

Gets or sets a value indicating whether this instance is inherited.

Declaration
public bool IsInherited { get; set; }
Property Value
Type Description
System.Boolean

true if this instance is inherited; otherwise, false.

IsNotDataBindable

Gets or sets a value indicating whether this instance is not data bind-able.

Declaration
public bool IsNotDataBindable { get; set; }
Property Value
Type Description
System.Boolean

true if this instance is not data bind-able; otherwise, false.

PropertyChangedCallback

Gets or sets the property changed callback.

Declaration
public PropertyChangedCallback PropertyChangedCallback { get; set; }
Property Value
Type Description
PropertyChangedCallback

The property changed callback.

Back to top Generated by DocFX