In This Article

TaskCardEventArgs Class

Provides event arguments for TaskCard-related events.

public class TaskCardEventArgs : CancelRoutedEventArgs
Inheritance:
object EventArgs RoutedEventArgs CancelRoutedEventArgs object

Constructors

TaskCardEventArgs(TaskCard, TaskColumn, int, TaskColumn, int)

Provides event arguments for TaskCard-related events.

public TaskCardEventArgs(TaskCard card, TaskColumn sourceColumn, int sourceIndex, TaskColumn targetColumn, int targetIndex)
Parameter Type Description
card TaskCard

The TaskCard for which this event was raised.

sourceColumn TaskColumn

The original TaskColumn that contains the card, if this event is related to a drag.

sourceIndex int

The original location index of the card, if this event is related to a drag.

targetColumn TaskColumn

The TaskColumn over which the card was dropped, if this event is related to a drag.

targetIndex int

The dropped location index of the card, if this event is related to a drag.

Properties

Card

The TaskCard for which this event was raised.

public TaskCard Card { get; }

Property Value

TaskCard

SourceColumn

The original TaskColumn that contains the card, if this event is related to a drag.

public TaskColumn SourceColumn { get; }

Property Value

TaskColumn

SourceIndex

The original location index of the card, if this event is related to a drag.

public int SourceIndex { get; }

Property Value

int

TargetColumn

The TaskColumn over which the card was dropped, if this event is related to a drag.

public TaskColumn TargetColumn { get; }

Property Value

TaskColumn

TargetIndex

The dropped location index of the card, if this event is related to a drag.

public int TargetIndex { get; }

Property Value

int

Inherited Members

Extension Methods