using Remotely.Desktop.Win.Services; using Remotely.Desktop.Win.ViewModels; using Remotely.ScreenCast.Core.Services; using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; namespace Remotely.Desktop.Win { /// /// Interaction logic for App.xaml /// public partial class App : Application { private void Application_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) { Logger.Write(e.Exception); MessageBox.Show("There was an unhandled exception.", "Error", MessageBoxButton.OK, MessageBoxImage.Error); e.Handled = true; } } }