NavigationRequestedEventArgs Constructors

Definition

Overloads

Name Description
NavigationRequestedEventArgs(Page, Boolean)

Creates navigation event args for the specified page.

NavigationRequestedEventArgs(Page, Page, Boolean)

Creates navigation event args for inserting before another page.

NavigationRequestedEventArgs(Page, Boolean)

Source:
NavigationRequestedEventArgs.cs
Source:
NavigationRequestedEventArgs.cs
Source:
NavigationRequestedEventArgs.cs
Source:
NavigationRequestedEventArgs.cs

Creates navigation event args for the specified page.

public:
 NavigationRequestedEventArgs(Microsoft::Maui::Controls::Page ^ page, bool animated);
public NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated);
new Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs : Microsoft.Maui.Controls.Page * bool -> Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs
Public Sub New (page As Page, animated As Boolean)

Parameters

page
Page

For internal use by the Microsoft.Maui.Controls platform.

animated
Boolean

For internal use by the Microsoft.Maui.Controls platform.

Applies to

NavigationRequestedEventArgs(Page, Page, Boolean)

Source:
NavigationRequestedEventArgs.cs
Source:
NavigationRequestedEventArgs.cs
Source:
NavigationRequestedEventArgs.cs
Source:
NavigationRequestedEventArgs.cs

Creates navigation event args for inserting before another page.

public:
 NavigationRequestedEventArgs(Microsoft::Maui::Controls::Page ^ page, Microsoft::Maui::Controls::Page ^ before, bool animated);
public NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated);
new Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs : Microsoft.Maui.Controls.Page * Microsoft.Maui.Controls.Page * bool -> Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs
Public Sub New (page As Page, before As Page, animated As Boolean)

Parameters

page
Page

For internal use by the Microsoft.Maui.Controls platform.

before
Page

For internal use by the Microsoft.Maui.Controls platform.

animated
Boolean

For internal use by the Microsoft.Maui.Controls platform.

Applies to