Mapping Class

DevZest WPF Docking

Mapping Class
Represents a mapping From one value To another.
Inheritance Hierarchy

Namespace: DevZest.Windows
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
public class Mapping : DependencyObject
Public Class Mapping
	Inherits DependencyObject

The Mapping type exposes the following members.

Constructors
  NameDescription
Public methodMapping
Constructs a default instance of Mapping.
Public methodMapping(Object, Object)
Constructs an instance of Mapping with the specified from and to values.
Top
Properties
  NameDescription
Public propertyFrom
Gets or sets the source object for the mapping. This is a denpendency property.
Public propertyTo
Gets or sets the destination object for the mapping. This is a dependency property.
Top
Fields
  NameDescription
Public fieldStatic memberFromProperty
Identifies the From dependency property.
Public fieldStatic memberToProperty
Identifies the To dependency property.
Top
Remarks

The MapConverter uses instances of this class to define mappings between one set of values and another.

See Also