NavigationStoppedEventHandler Delegat
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.
Stellt Ereignisdaten für das NavigationStopped-Ereignis bereit .
public delegate void NavigationStoppedEventHandler(Platform::Object ^ sender, NavigationEventArgs ^ e);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(4027678171, 4858, 19853, 139, 38, 179, 131, 208, 156, 43, 60)]
class NavigationStoppedEventHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(4027678171, 4858, 19853, 139, 38, 179, 131, 208, 156, 43, 60)]
public delegate void NavigationStoppedEventHandler(object sender, NavigationEventArgs e);
Public Delegate Sub NavigationStoppedEventHandler(sender As Object, e As NavigationEventArgs)
Parameter
- sender
-
Object
Platform::Object
IInspectable
Das Objekt, in dem der Handler angefügt ist.
Die Ereignisdaten für das Ereignis.
- Attribute
Windows-Anforderungen
Gerätefamilie |
Windows 10 (eingeführt in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (eingeführt in v1.0)
|
Beispiele
Im folgenden Codebeispiel wird die Verwendung des NavigationStopped-Ereignisses veranschaulicht.
public MainPage()
{
this.InitializeComponent();
this.Frame.NavigationStopped += Frame_NavigationStopped;
}
void Frame_NavigationStopped(object sender, NavigationEventArgs e)
{
Windows.UI.Popups.MessageDialog dialog =
new Windows.UI.Popups.MessageDialog(
String.Format("Navigation to page: {0} was stopped",
e.SourcePageType.ToString()),
"Navigation Stopped");
dialog.ShowAsync();
}