Class TableViewRowContextFlyoutEventArgs
Provides data for the RowContextFlyout event.
public class TableViewRowContextFlyoutEventArgs : HandledEventArgs
- Inheritance
-
objectEventArgsHandledEventArgsTableViewRowContextFlyoutEventArgs
Constructors
TableViewRowContextFlyoutEventArgs(int, TableViewRow, object, FlyoutBase?)
Initializes a new instance of the TableViewRowContextFlyoutEventArgs class.
public TableViewRowContextFlyoutEventArgs(int index, TableViewRow row, object item, FlyoutBase? flyout)
Parameters
indexintThe index of the row.
rowTableViewRowThe TableViewRow associated with the event.
itemobjectThe item associated with the row.
flyoutFlyoutBaseThe flyout to be shown.
Properties
Flyout
Gets the flyout to be shown.
public FlyoutBase? Flyout { get; }
Property Value
- FlyoutBase
Index
Gets the index of the row.
public int Index { get; }
Property Value
- int
Item
Gets the item associated with the row.
public object Item { get; }
Property Value
- object
Row
Gets the TableViewRow associated with the event.
public TableViewRow Row { get; }