mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-11-23 19:30:59 +00:00
eaaab47a6c
--HG-- extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4019155
71 lines
2.3 KiB
C#
71 lines
2.3 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using System.Windows.Threading;
|
|
|
|
namespace Jellyfish.Library
|
|
{
|
|
public class ApplicationBase : Application
|
|
{
|
|
public ApplicationBase() :
|
|
this(null)
|
|
{
|
|
}
|
|
|
|
public ApplicationBase(string name)
|
|
{
|
|
Name = name;
|
|
|
|
DispatcherUnhandledException += Application_DispatcherUnhandledException;
|
|
AppDomain.CurrentDomain.UnhandledException += AppDomain_UnhandledException;
|
|
}
|
|
|
|
private void Application_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
|
|
{
|
|
MessageBox.Show(GetExceptionMessage(e.Exception), GetExceptionCaption("Application Dispatcher Exception", true));
|
|
Shutdown();
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void AppDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
|
|
{
|
|
MessageBox.Show(GetExceptionMessage(e.ExceptionObject as Exception), GetExceptionCaption("AppDomain Exception", e.IsTerminating));
|
|
}
|
|
|
|
private string GetExceptionCaption(string title, bool isTerminating)
|
|
{
|
|
StringBuilder caption = new StringBuilder();
|
|
caption.AppendFormat("[{0}] ", Process.GetCurrentProcess().Id);
|
|
if (!string.IsNullOrEmpty(Name))
|
|
{
|
|
caption.Append(Name);
|
|
caption.Append(" ");
|
|
}
|
|
caption.Append(title);
|
|
if (isTerminating)
|
|
{
|
|
caption.Append(" (Terminating)");
|
|
}
|
|
|
|
return caption.ToString();
|
|
}
|
|
|
|
private static string GetExceptionMessage(Exception exception)
|
|
{
|
|
StringBuilder message = new StringBuilder();
|
|
if (exception != null)
|
|
{
|
|
message.Append(exception.Message.ToString());
|
|
message.Append(Environment.NewLine);
|
|
message.Append(Environment.NewLine);
|
|
message.Append(exception.ToString()); // includes stack trace
|
|
}
|
|
|
|
return message.ToString();
|
|
}
|
|
|
|
public string Name { get; private set; }
|
|
}
|
|
}
|