Intersoft.Client.UI.Navigation Namespace : NavigationEventArgs Class |
Public NotInheritable Class NavigationEventArgs Inherits Intersoft.Client.Framework.ISRoutedEventArgs
Dim instance As NavigationEventArgs
public sealed class NavigationEventArgs : Intersoft.Client.Framework.ISRoutedEventArgs
public ref class NavigationEventArgs sealed : public Intersoft.Client.Framework.ISRoutedEventArgs
public partial class MainPage : UXPage { public MainPage() { InitializeComponent(); this.ContentFrame.Navigated += new NavigationEventHandler(ContentFrame_Navigated); } protected override void OnNavigatedTo(NavigationEventArgs e) { } private void ContentFrame_Navigated(object sender, NavigationEventArgs e) { string title = string.Empty; object content = e.Content; if (content == null) content = ContentFrame.Content; if (content is Page) title = ((Page)content).Title; if (CrossPlatform.IsHtmlPageEnabled()) CrossPlatform.SetDocumentTitle("Intersoft ClientUI Application | " + title); } }
System.Object
System.EventArgs
System.Windows.RoutedEventArgs
Intersoft.Client.Framework.ISRoutedEventArgs
Intersoft.Client.UI.Navigation.NavigationEventArgs
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2