Quantcast
Channel: かずきのBlog@hatena
Viewing all articles
Browse latest Browse all 1387

Universal Windows Platform appの電話でHardwareButtonsクラスを使わないで戻るに対応する方法

$
0
0
Windows Insider Preview 10074 + VS2015 RC時点の情報です

戻るへの対応だけで、ApiInformationクラスへお伺いを立てるのはメンドクサイと思ってたら、SystemNavigationManagerという便利なクラスがいました。

App.xaml.csのOnLaunchedメソッドの最後に以下のコードを追記するだけで、電話の戻るボタンへの対応ばっちりっぽい?です。

SystemNavigationManager.GetForCurrentView().BackRequested += (_, args) =>
{
    if (rootFrame.CanGoBack)
    {
        args.Handled = true;
        rootFrame.GoBack();
    }
};

これはお手軽。


Viewing all articles
Browse latest Browse all 1387

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>