7

Windows Phone 8 でやりたいことをハードウェアの戻るボタンで実行するのに問題があります。このアプリは厳密には単なる Web ビューであるため、現在のところ、戻る (ハードウェア) ボタンをクリックするとアプリが閉じます。これを回避するにはどうすれば、前の Web ページに移動したり、それらの行のインデックスなどに戻ることができますか?

ありがとう

これは、現在 MainPage.xaml.cs ファイルにあるものです

namespace AvoidDiabetes
{
public partial class MainPage : PhoneApplicationPage
{
    // Url of Home page
    private string MainUri = "/Html/index.html";
    private Stack<Uri> _history = new Stack<Uri>();
    private Uri _current = null;

    // Constructor
    public MainPage()
    {
        InitializeComponent();
    }

    private void Browser_Loaded(object sender, RoutedEventArgs e)
    {
        // Add your URL here
        Browser.Navigate(new Uri(MainUri, UriKind.Relative));
        Browser.IsScriptEnabled = true;
    }

    // Navigates back in the web browser's navigation stack, not the applications.
    private void BackApplicationBar_Click(object sender, EventArgs e)
    {
        Browser.GoBack();
    }

    // Navigates forward in the web browser's navigation stack, not the applications.
    private void ForwardApplicationBar_Click(object sender, EventArgs e)
    {
        Browser.GoForward();
    }

    // Navigates to the initial "home" page.
    private void HomeMenuItem_Click(object sender, EventArgs e)
    {
        Browser.Navigate(new Uri(MainUri, UriKind.Relative));


    }

    // Handle navigation failures.
    private void Browser_NavigationFailed(object sender, System.Windows.Navigation.NavigationFailedEventArgs e)
    {
        MessageBox.Show("Navigation to this page failed, check your internet connection");
    }



    protected override void OnBackKeyPress(CancelEventArgs e)
    {
        base.OnBackKeyPress(e);


        if (_history.Count == 0)
        {
            // No history, allow the back button
            // Or do whatever you need to do, like navigate the application page
            return;
        }
        // Otherwise, if this isn't the first navigation, push the current
        else
        {
            Browser.GoBack();
        }




    }

    private async void WebBrowser_Navigated(object sender, NavigationEventArgs e)
    {
        // If we navigated back, pop the last entry
        if (_history.Count > 0 && _history.Peek() == e.Uri)
        {
            _history.Pop();
        }
        // Otherwise, if this isn't the first navigation, push the current
        else if (_current != null)
        {
            _history.Push(_current);
        }

        // The current page is now the one we've navigated to
        _current = e.Uri;
    }

}

}

4

2 に答える 2

11

アプリケーションのページでOnBackKeyPressをオーバーライドし、 WebBrowserコントロールを前のページに戻す操作を処理する必要があります。

C# を使用していると仮定すると、大まかな方法​​は次のとおりです (WebBrowser_Navigated を WebBrowser の Navigated イベントに接続します)。

private Stack<Uri> _history = new Stack<Uri>();
private Uri _current = null;

protected override void OnBackKeyPress(CancelEventArgs e)
{
    base.OnBackKeyPress(e);

    if (_history.Count == 0)
    {
        // No history, allow the back button
        // Or do whatever you need to do, like navigate the application page
        return;
    }

    // Cancel the back button press
    e.Cancel = true;

    // Navigate to the last page
    Browser.Navigate(_history.Peek());
}

private async void WebBrowser_Navigated(object sender, NavigationEventArgs e)
{
    // If we navigated back, pop the last entry
    if (_history.Count > 0 && _history.Peek() == e.Uri)
    {
        _history.Pop();
    }
    // Otherwise, if this isn't the first navigation, push the current
    else if (_current != null)
    {
        _history.Push(_current);
    }

    // The current page is now the one we've navigated to
    _current = e.Uri;
}
于 2013-02-11T22:18:41.110 に答える
3

これは私と一緒に機能しました。 browser.CanGoBack() が true の場合は戻る、そうでない場合は単に戻るかどうかを確認できます

   protected override void OnBackKeyPress(CancelEventArgs e) {
        base.OnBackKeyPress(e);


        if (browser.CanGoBack)
        {
            e.Cancel = true;
            browser.GoBack();
        }
        else {
            return;
        }
    }
于 2013-07-10T13:50:07.377 に答える