Class Setter
Setter class contains information, which property should be set and what value on specified target
Inheritance
System.Object
Setter
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 Setter
Constructors
Setter()
Initializes a new instance of the Setter class.
Declaration
public Setter()
Setter(DependencyProperty, Object)
Initializes a new instance of the Setter class.
Declaration
public Setter(DependencyProperty property, object value)
Parameters
Type | Name | Description |
---|---|---|
DependencyProperty | property | The property. |
System.Object | value | The value. |
Setter(DependencyProperty, Object, String)
Initializes a new instance of the Setter class.
Declaration
public Setter(DependencyProperty property, object value, string targetName)
Parameters
Type | Name | Description |
---|---|---|
DependencyProperty | property | The property. |
System.Object | value | The value. |
System.String | targetName | Name of the target. |
Properties
Property
Gets or sets the property.
Declaration
public DependencyProperty Property { get; set; }
Property Value
Type | Description |
---|---|
DependencyProperty | The property. |
TargetName
Gets or sets the name of the target.
Declaration
public string TargetName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the target. |
Value
Gets or sets the value.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The value. |