WPF-Samples/Graphics/2DTransforms/App.cs

19 строки
560 B
C#

// // Copyright (c) Microsoft. All rights reserved.
// // Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Windows;
namespace _2DTransforms
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
private void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs args)
{
MessageBox.Show("Unhandled exception: " + args.ExceptionObject);
}
}
}