我正在尝试在调度计时器中使用消息对话框来在时间完成时更改用户。但有时会出现以下错误:“访问被拒绝。(HRESULT异常:0x80070005(E_ACCESSDENIED))”。如何解决这个问题?
代码:
public DetailPage()
{
timer = new DispatcherTimer();
timer.Tick += dispatcherTimer_Tick;
timer.Interval = new TimeSpan(0, 0, 1);
this.txtTimer.Text = GlobalVariables.totalTime.Minutes + ":" + GlobalVariables.totalTime.Seconds + "mins";
timer.Start();
}
async void dispatcherTimer_Tick(object sender, object e)
{
if (GlobalVariables.totalTime.Minutes > 0 || GlobalVariables.totalTime.Seconds > 0)
{
GlobalVariables.totalTime = GlobalVariables.totalTime.Subtract(new TimeSpan(0, 0, 1));
this.txtTimer.Text = GlobalVariables.totalTime.Minutes + ":" + GlobalVariables.totalTime.Seconds + " mins";
}
else
{
timer.Tick -= dispatcherTimer_Tick;
timer.Stop();
MessageDialog signInDialog = new MessageDialog("Time UP.", "Session Expired");
// Add commands and set their callbacks
signInDialog.Commands.Add(new UICommand("OK", (command) =>
{
this.Frame.Navigate(typeof(HomePage), "AllGroups");
}));
// Set the command that will be invoked by default
signInDialog.DefaultCommandIndex = 1;
// Show the message dialog
await signInDialog.ShowAsync();
}
}
我收到错误:
// Show the message dialog
await signInDialog.ShowAsync();
答案 0 :(得分:2)
与Jeff说的一样,计时器Tick事件处理程序代码在与UI线程不同的线程上运行。您将不得不回到此UI线程来操作UI中的任何内容:消息对话框,更改属性等。
// some code for the timer in your page
timer = new DispatcherTimer {Interval = new TimeSpan(0, 0, 1)};
timer.Tick += TimerOnTick;
timer.Start();
// event handler for the timer tick
private void TimerOnTick(object sender, object o)
{
timer.Stop();
var md = new MessageDialog("Test");
this.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => md.ShowAsync());
}
请注意,我确实在事件处理程序中停止了计时器。如果您没有在显示另一个消息对话框之前及时关闭消息对话框,那么您也将在第二个ShowAsync上获得拒绝访问权限(因为第一个仍然打开)。
答案 1 :(得分:1)
dispatcherTimer_Tick
方法在与UI不同的线程上运行。如果要访问绑定到UI线程的内容(如UX),则必须返回到UI线程。最简单的方法是使用
Dispatcher.RunAsync()