0

当 DispatcherUnhandledException 事件发生时,是否可以(如果可以)重置 App.xaml.cs 中的光标。

在意外发生后进行清理。

4

1 回答 1

1

假设您指的是鼠标光标并且您希望防止应用程序崩溃:

应用程序.xaml

<Application x:Class="WpfApplication1.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml" 
             DispatcherUnhandledException="Application_DispatcherUnhandledException">
  <Application.Resources>
  </Application.Resources>
</Application>

应用程序.xaml.cs

private void Application_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
{
  // resets the cursor
  Mouse.OverrideCursor = null;

  // prevents the app from crashing
  e.Handled = true;
}
于 2013-09-24T10:40:40.000 回答