This topic has not yet been rated - Rate this topic

NavigationStoppedEventHandler delegate

Provides event data for the NavigationStopped event.

Syntax


public delegate void NavigationStoppedEventHandler(
  object sender, 
  NavigationEventArgs e
)

Attributes

GuidAttribute("f0117ddb-12fa-4d8d-8b26-b383d09c2b3c")
VersionAttribute(NTDDI_WIN8)
WebHostHiddenAttribute()

Parameters

sender

Type: System.Object [.NET] | Platform::Object [C++]

The object where the handler is attached.

e

Type: NavigationEventArgs

Event data for the event.

Examples

The following code example demonstrates the use of the NavigationStopped event.


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();
}


Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.UI.Xaml.Navigation
Windows::UI::Xaml::Navigation [C++]

Metadata

Windows.winmd

 

 

Build date: 12/4/2012

© 2013 Microsoft. All rights reserved.