2015-06-02 108 views
20

我将如何处理windows mobile 10的后退按钮和windows 10 tablet模式的后退按钮?我一直在寻找,但找不到任何示例。Windows 10 UAP后退按钮

回答

28

此主题是Guide to Universal Windows Platform apps中使用的示例之一。我强烈建议您在开始使用Universal应用程序时阅读这些内容。

对于页眉上的按钮,使用Windows.UI.Core.SystemNavigationManager并设置AppViewBackButtonVisibility属性以显示或隐藏按钮并处理BackRequested事件以执行导航。

Windows.UI.Core.SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackButtonVisibility.Visible; 
Windows.UI.Core.SystemNavigationManager.GetForCurrentView().BackRequested += (s,a) => 
{ 
    Debug.WriteLine("BackRequested"); 
    if (Frame.CanGoBack) 
    { 
     Frame.GoBack(); 
     a.Handled = true; 
    } 
} 

连线了硬件后退按钮一样的,你在的Windows Phone 8.1做的,但您应检查P​​honeContract(或个人类和方法),以确保它的存在:

if (ApiInformation.IsApiContractPresent ("Windows.Phone.PhoneContract", 1, 0)) { 
    Windows.Phone.UI.Input.HardwareButtons.BackPressed += (s, a) => 
    { 
     Debug.WriteLine("BackPressed"); 
     if (Frame.CanGoBack) 
     { 
      Frame.GoBack(); 
      a.Handled = true; 
     } 
    }; 
} 
+0

AppViewBackButtonVisibility应该放在哪里? MainPage contstructor不会为我做任何事情,也不会在App.xaml.cs中执行OnLaunched – robertk

+0

它会自动进入标题栏:) – shady

+1

有没有什么方法可以自定义后退按钮的背景颜色? –

6

下面的代码添加到您的App.xaml.cs,它会处理在桌面,平板电脑和移动导航(我测试了它在移动仿真器) 更好地突出差异和(由JEFF PROSISEHandling The Back Button In Windows 10 UWP Apps)解释

sealed partial class App : Application 
{ 

    public App() 
    { 
     this.InitializeComponent(); 
     this.Suspending += OnSuspending; 
    } 

    protected override void OnLaunched(LaunchActivatedEventArgs e) 
    { 
     Frame rootFrame = Window.Current.Content as Frame; 

     // Do not repeat app initialization when the Window already has content, 
     // just ensure that the window is active 
     if (rootFrame == null) 
     { 
      // Create a Frame to act as the navigation context and navigate to the first page 
      rootFrame = new Frame(); 

      rootFrame.NavigationFailed += OnNavigationFailed; 
      rootFrame.Navigated += OnNavigated; 

      if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) 
      { 
       // TODO: Load state from previously suspended application 
      } 

      // Place the frame in the current Window 
      Window.Current.Content = rootFrame; 

      // Register a handler for BackRequested events and set the 
      // visibility of the Back button 
      SystemNavigationManager.GetForCurrentView().BackRequested += OnBackRequested; 

      SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = 
       rootFrame.CanGoBack ? 
       AppViewBackButtonVisibility.Visible : 
       AppViewBackButtonVisibility.Collapsed; 
     } 

     if (rootFrame.Content == null) 
     { 
      // When the navigation stack isn't restored navigate to the first page, 
      // configuring the new page by passing required information as a navigation 
      // parameter 
      rootFrame.Navigate(typeof(MainPage), e.Arguments); 
     } 

     // Ensure the current window is active 
     Window.Current.Activate(); 
    } 

    void OnNavigationFailed(object sender, NavigationFailedEventArgs e) 
    { 
     throw new Exception("Failed to load Page " + e.SourcePageType.FullName); 
    } 

    private void OnNavigated(object sender, NavigationEventArgs e) 
    { 
     // Each time a navigation event occurs, update the Back button's visibility 
     SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = 
      ((Frame)sender).CanGoBack ? 
      AppViewBackButtonVisibility.Visible : 
      AppViewBackButtonVisibility.Collapsed; 
    } 

    private void OnSuspending(object sender, SuspendingEventArgs e) 
    { 
     var deferral = e.SuspendingOperation.GetDeferral(); 
     // TODO: Save application state and stop any background activity 
     deferral.Complete(); 
    } 

    private void OnBackRequested(object sender, BackRequestedEventArgs e) 
    { 
     Frame rootFrame = Window.Current.Content as Frame; 

     if (rootFrame.CanGoBack) 
     { 
      e.Handled = true; 
      rootFrame.GoBack(); 
     } 
    } 
} 
+0

我试图在我的Lumia 950上隐藏按钮,按钮,回家,搜索按钮。它什么都不做,他们仍然存在,有什么想法为什么? – Nick

+0

答案是关于左上角出现的特殊返回按钮,并处理具有退出应用的默认行为的硬件按钮。它与家庭和搜索按钮没有任何关系。 –

+0

啊好的谢谢,我的坏。我最终找到了我想要的信息。 – Nick