Class ItemSelectedEventArgs<T>
Event arguments for the item selected event. Contains the selected item.
Inherited Members
Namespace: Benday.Presentation
Assembly: Benday.Presentation.dll
Syntax
public class ItemSelectedEventArgs<T> : EventArgs
Type Parameters
| Name | Description |
|---|---|
| T | The type of the selected item. |
Constructors
| Edit this page View SourceItemSelectedEventArgs(T?)
Initializes a new instance of the ItemSelectedEventArgs class.
Declaration
public ItemSelectedEventArgs(T? selectedItem)
Parameters
| Type | Name | Description |
|---|---|---|
| T | selectedItem | The item that was selected, or null if selection was cleared. |
Properties
| Edit this page View SourceSelectedItem
Gets the selected item, or null if selection was cleared.
Declaration
public T? SelectedItem { get; }
Property Value
| Type | Description |
|---|---|
| T |