Windows Phone 8.1 EventArgs类总结(C#描述)——NavigationEventArgs类

链接:https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.navigation.navigationeventargs(v=win.10).aspx

NavigationEventArgs类

为无法取消的导航事件及事件处理器函数所需的数据。该类直接继承于Object类。

public sealed class NavigationEventArgs 

该类所具有的成员有:

名称访问类型类别说明延伸
Content只读属性(properties)获取目标页面的根节点 
NavigationMode只读属性(properties)导航时的移动方向可能的取值:New、Back、Forward、Refresh。
NavigationTransitionInfo只读属性(properties)导航时的动画类型
public class NavigationTransitionInfo : DependencyObject

 

Parameter只读属性(properties)传递的参数 
SourcePageType只读属性(properties)源页面的数据类型 
Uri读写属性(properties)目标内容的Uri 

举例:

 1 private void NavigateButton_Click(object sender, RoutedEventArgs e)
 2 {
 3     ProgressRing1.IsActive = true;
 4 
 5     // Provide an indication as to where we are trying to navigate to
 6     rootPage.NotifyUser(String.Format("Navigating to: {0}", Address.Text), NotifyType.StatusMessage);
 7 
 8     // Hook the LoadCompleted event for the WebView to know when the URL is fully loaded
 9     WebView1.LoadCompleted += new Windows.UI.Xaml.Navigation.LoadCompletedEventHandler(WebView1_LoadCompleted);
10 
11     // Attempt to navigate to the specified URL.  Notice that a malformed URL will raise a FormatException
12     // which we catch and let the user know that the URL is bad and to enter a new well-formed one.
13     try
14     {
15         Uri targetUri = new Uri(Address.Text);
16         WebView1.Navigate(targetUri);
17     }
18     catch (FormatException myE)
19     {
20         // Bad address
21         rootPage.NotifyUser(String.Format("Address is invalid, try again.  Details --> {0}", myE.Message), NotifyType.ErrorMessage);
22     }
23 }
24 
25 void WebView1_LoadCompleted(object sender, Windows.UI.Xaml.Navigation.NavigationEventArgs e)
26 {
27     WebView1.Visibility = Windows.UI.Xaml.Visibility.Visible;
28     BlockingRect.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
29     ProgressRing1.IsActive = false;
30 
31     // Tell the user that the page has loaded
32     rootPage.NotifyUser("Page loaded", NotifyType.StatusMessage);
33 }
34 
35 void Address_KeyUp(object sender, KeyRoutedEventArgs e)
36 {
37     if (e.Key == Windows.System.VirtualKey.Enter)
38     {
39         NavigateButton_Click(this, new RoutedEventArgs());
40     }
41 }


待续

转载于:https://www.cnblogs.com/rogeryoung/p/4257698.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值