Initial Dansori character workspace
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Windows;
|
||||
using System.Windows.Threading;
|
||||
|
||||
namespace Character_Builder;
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
public App()
|
||||
{
|
||||
DispatcherUnhandledException += (_, e) =>
|
||||
{
|
||||
MessageBox.Show(e.Exception.Message, "오류", MessageBoxButton.OK, MessageBoxImage.Warning);
|
||||
e.Handled = true;
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user