PageInsertedEventArgs Class
Definition
Provides data for the Avalonia.Controls.NavigationPage.PageInserted event.
public class PageInsertedEventArgs
Constructors
| Name | Description |
|---|---|
| PageInsertedEventArgs | Initializes a new instance of the Avalonia.Controls.PageInsertedEventArgs class. |
PageInsertedEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.PageInsertedEventArgs class.
public PageInsertedEventArgs(Avalonia.Controls.Page page, Avalonia.Controls.Page before)
Parameters
The page that was inserted.
before Avalonia.Controls.Page
The page before which the new page was inserted.
Properties
| Name | Description |
|---|---|
| Before | Gets the page before which the new page was inserted. |
| Page | Gets the page that was inserted. |
Before Property
Gets the page before which the new page was inserted.
public Avalonia.Controls.Page Before { get; set; }
Page Property
Gets the page that was inserted.
public Avalonia.Controls.Page Page { get; set; }