标签: c# silverlight
我的MainPage.xaml中有一个导航框架,其内容设置为Login.xaml。 从LoginPage.xaml,我导航到其他页面如下:
this.NavigationService.Navigate(new Uri("/SecondPage.xaml", UriKind.Relative));
我需要实现一个用户不活动的timoout,在1分钟不活动(键盘和鼠标)后从任何页面重定向到Login.xaml。
我该怎么做?
编辑:我还需要在超时发生时调用一些清理例程。