Setter Constructors

Definition

Initializes a new instance of the Setter class.

Overloads

Setter()

Initializes a new instance of the Setter class.

Setter(DependencyProperty, Object)

Initializes a new instance of the Setter class with the specified property and value.

Setter(DependencyProperty, Object, String)

Initializes a new instance of the Setter class with the specified property, value, and target name.

Setter()

Initializes a new instance of the Setter class.

public:
 Setter();
public Setter ();
Public Sub New ()

Applies to

Setter(DependencyProperty, Object)

Initializes a new instance of the Setter class with the specified property and value.

public:
 Setter(System::Windows::DependencyProperty ^ property, System::Object ^ value);
public Setter (System.Windows.DependencyProperty property, object value);
new System.Windows.Setter : System.Windows.DependencyProperty * obj -> System.Windows.Setter
Public Sub New (property As DependencyProperty, value As Object)

Parameters

property
DependencyProperty

The DependencyProperty to apply the Value to.

value
Object

The value to apply to the property.

Applies to

Setter(DependencyProperty, Object, String)

Initializes a new instance of the Setter class with the specified property, value, and target name.

public:
 Setter(System::Windows::DependencyProperty ^ property, System::Object ^ value, System::String ^ targetName);
public Setter (System.Windows.DependencyProperty property, object value, string targetName);
new System.Windows.Setter : System.Windows.DependencyProperty * obj * string -> System.Windows.Setter
Public Sub New (property As DependencyProperty, value As Object, targetName As String)

Parameters

property
DependencyProperty

The DependencyProperty to apply the Value to.

value
Object

The value to apply to the property.

targetName
String

The name of the child node this Setter is intended for.

Applies to