计算用户点击后退按钮的次数(Windows Phone)

时间:2012-05-30 10:01:09

标签: c# windows-phone-7

在我的Windows Phone应用程序中,我需要计算用户从当前页面点击后退按钮的次数。有可能吗?

2 个答案:

答案 0 :(得分:1)

BackButtonPress有一个事件

protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)

答案 1 :(得分:1)

你有没有试过这个。

int counter =0;

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

    counter++;

    textbox1.text = counter.tostring();

    navigation process;
}