在我的应用程序中,我有一个使用 dispatcherTimer 和 Tick 方法的 Chronometer 类。每一秒,都有一个变量减少。
我希望当变量的值为 0 时,加载一个新的 xaml 页面。
我尝试使用NavigationService
,但此方法仅适用于 xaml.cs 文件。
当变量减少时可见的我的 xaml 页面是:WordPage.xaml 我要显示的 xaml 页面是:FinalPage.xaml
你能明白我想要什么吗?请帮我
编辑 :
我班级的构造函数是:
public Chrono(DispatcherTimer newTimer, TextBlock chrono, TextBlock NumEquip, P1 page1)
{
//Part effaced
m_page1 = page1;
}
并且对象 Chrono 的实例是:
MonChrono = new Chrono(newTimer, this.TimeLabel, this);