WindowsPhone学习之二返回键的重定义

返回键默认返回之前的一个页面,如果需要改变的话,需要重定义此函数:

        protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
        {
            base.OnBackKeyPress(e);
            // 定义自己的行为
            NavigationService.Navigate(new Uri("/Pear.xaml",UriKind.Relative));
            e.Cancel = true;// 取消默认返回键功能
        }

这样,系统默认的返回功能即被屏蔽了,将按照使用者的code去执行相应操作。


你可能感兴趣的:(WindowsPhone)