在我的Windows Phone应用程序中,我需要计算用户从当前页面点击后退按钮的次数。有可能吗?
答案 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;
}