Skip to content

Instantly share code, notes, and snippets.

@ogaty
Last active December 4, 2018 00:26
Show Gist options
  • Save ogaty/626b07376fbf261e9044434f2ea59452 to your computer and use it in GitHub Desktop.
Save ogaty/626b07376fbf261e9044434f2ea59452 to your computer and use it in GitHub Desktop.
uwp戻るボタン
SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackButtonVisibility.Visible; ;
SystemNavigationManager.GetForCurrentView().BackRequested += (s, a) =>
{
    if (Frame.CanGoBack)
    {
        Frame.GoBack();
        a.Handled = true;
    }
};

FileStream

uwpでのファイルアクセスの基本形。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment