EventSetter Constructors

Definition

Initializes a new instance of the EventSetter class.

Overloads

EventSetter()

Initializes a new instance of the EventSetter class.

EventSetter(RoutedEvent, Delegate)

Initializes a new instance of the EventSetter class, using the provided event and handler parameters.

EventSetter()

Initializes a new instance of the EventSetter class.

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

Applies to

EventSetter(RoutedEvent, Delegate)

Initializes a new instance of the EventSetter class, using the provided event and handler parameters.

public:
 EventSetter(System::Windows::RoutedEvent ^ routedEvent, Delegate ^ handler);
public EventSetter (System.Windows.RoutedEvent routedEvent, Delegate handler);
new System.Windows.EventSetter : System.Windows.RoutedEvent * Delegate -> System.Windows.EventSetter
Public Sub New (routedEvent As RoutedEvent, handler As Delegate)

Parameters

routedEvent
RoutedEvent

The particular routed event that the EventSetter responds to.

handler
Delegate

The handler to assign in this setter.

Remarks

This signature is typically used if you creating an EventSetter in code, or in code-behind to create an EventSetter that augments an existing style prior to use.

Applies to