Intersoft.Client.UI.Navigation Namespace : ChildNavigationEventArgs Class |
Public NotInheritable Class ChildNavigationEventArgs Inherits Intersoft.Client.Framework.ISRoutedEventArgs
Dim instance As ChildNavigationEventArgs
public sealed class ChildNavigationEventArgs : Intersoft.Client.Framework.ISRoutedEventArgs
public ref class ChildNavigationEventArgs sealed : public Intersoft.Client.Framework.ISRoutedEventArgs
public partial class Customers : UXPage { public MobilePhones() { InitializeComponent(); } protected override void OnNavigatedFrom(NavigationEventArgs e) { base.OnNavigatedFrom(e); } // Executes when the user navigates to this page. protected override void OnNavigatedTo(NavigationEventArgs e) { LoadData(this.NavigationContext.QueryString); } // Called when a child navigation has occurred. protected override void OnChildNavigation(ChildNavigationEventArgs e) { LoadData(e.QueryString); } ... }
System.Object
System.EventArgs
System.Windows.RoutedEventArgs
Intersoft.Client.Framework.ISRoutedEventArgs
Intersoft.Client.UI.Navigation.ChildNavigationEventArgs
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