NavigationProxy.PopAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
| Name | Beschreibung |
|---|---|
| PopAsync() |
Pops the current page from the navigation stack with animation. |
| PopAsync(Boolean) |
Pops the current page from the navigation stack. |
PopAsync()
- Quelle:
- NavigationProxy.cs
- Quelle:
- NavigationProxy.cs
- Quelle:
- NavigationProxy.cs
Pops the current page from the navigation stack with animation.
public:
virtual System::Threading::Tasks::Task<Microsoft::Maui::Controls::Page ^> ^ PopAsync();
public System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page> PopAsync();
abstract member PopAsync : unit -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
override this.PopAsync : unit -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
Public Function PopAsync () As Task(Of Page)
Gibt zurück
Die Seite, die eingetaucht wurde.
Implementiert
Gilt für:
PopAsync(Boolean)
- Quelle:
- NavigationProxy.cs
- Quelle:
- NavigationProxy.cs
- Quelle:
- NavigationProxy.cs
Pops the current page from the navigation stack.
public:
virtual System::Threading::Tasks::Task<Microsoft::Maui::Controls::Page ^> ^ PopAsync(bool animated);
public System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page> PopAsync(bool animated);
abstract member PopAsync : bool -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
override this.PopAsync : bool -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
Public Function PopAsync (animated As Boolean) As Task(Of Page)
Parameter
- animated
- Boolean
Gibt an, ob der Übergang animiert werden soll.
Gibt zurück
Die Seite, die eingetaucht wurde.