Class CommandEventArgs
Defines arguments that wire up args of an event and parameter of a command.
Namespace: Sartorius.SAF.Presentation.Commands
Assembly: Sartorius.SAF.Presentation.dll
Syntax
public class CommandEventArgs
Constructors
View SourceCommandEventArgs(object, EventArgs)
Creates a new instance of the CommandEventArgs class.
Declaration
public CommandEventArgs(object sender, EventArgs e)
Parameters
| Type | Name | Description |
|---|---|---|
| object | sender | The sender. |
| EventArgs | e | The EventArgs. |
Properties
View SourceCommandParameter
Gets or sets the command parameter.
Declaration
public object CommandParameter { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
EventArgs
Gets or sets the EventArgs.
Declaration
public EventArgs EventArgs { get; }
Property Value
| Type | Description |
|---|---|
| EventArgs |
Sender
Gets or sets the sender of the command.
Declaration
public object Sender { get; }
Property Value
| Type | Description |
|---|---|
| object |