Table of Contents

Class TableViewRowContextFlyoutEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the RowContextFlyout event.

public class TableViewRowContextFlyoutEventArgs : HandledEventArgs
Inheritance
object
EventArgs
HandledEventArgs
TableViewRowContextFlyoutEventArgs

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

index int

The index of the row.

row TableViewRow

The TableViewRow associated with the event.

item object

The item associated with the row.

flyout FlyoutBase

The 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; }

Property Value

TableViewRow