Skip to main content

ContainerIndexChangedEventArgs Class

Definition

Assembly:Avalonia.Controls
Package:Avalonia
public class ContainerIndexChangedEventArgs

Inheritance: EventArgs -> ContainerIndexChangedEventArgs

Constructors

NameDescription
ContainerIndexChangedEventArgsNo summary available.

ContainerIndexChangedEventArgs Constructor

public ContainerIndexChangedEventArgs(Avalonia.Controls.Control container, int oldIndex, int newIndex)

Parameters

container Avalonia.Controls.Control

oldIndex int

newIndex int

Properties

NameDescription
ContainerGet the container for which the index changed.
NewIndexGets the index of the container after the change.
OldIndexGets the index of the container before the change.

Container Property

Get the container for which the index changed.

public Avalonia.Controls.Control Container { get; set; }

NewIndex Property

Gets the index of the container after the change.

public int NewIndex { get; set; }

OldIndex Property

Gets the index of the container before the change.

public int OldIndex { get; set; }