Table of Contents

Class TableViewCellContextFlyoutEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the CellContextFlyout event.

public class TableViewCellContextFlyoutEventArgs : HandledEventArgs
Inheritance
object
EventArgs
HandledEventArgs
TableViewCellContextFlyoutEventArgs

Constructors

TableViewCellContextFlyoutEventArgs(TableViewCellSlot, TableViewCell, object, FlyoutBase?)

Initializes a new instance of the TableViewCellContextFlyoutEventArgs class.

public TableViewCellContextFlyoutEventArgs(TableViewCellSlot slot, TableViewCell cell, object item, FlyoutBase? flyout)

Parameters

slot TableViewCellSlot

The slot of the cell for which the context flyout is being shown.

cell TableViewCell

The cell for which the context flyout is being shown.

item object

The item associated with the cell.

flyout FlyoutBase

The context flyout to be shown.

Properties

Cell

Gets the cell for which the context flyout is being shown.

public TableViewCell Cell { get; }

Property Value

TableViewCell

Flyout

Gets the context flyout to be shown.

public FlyoutBase? Flyout { get; }

Property Value

FlyoutBase

Item

Gets the item associated with the cell.

public object Item { get; }

Property Value

object

Slot

Gets the slot of the cell for which the context flyout is being shown.

public TableViewCellSlot Slot { get; }

Property Value

TableViewCellSlot