static void Main(string[] args) { // Disable the WinForms unhandled exception dialog. // SurfaceShell will notify the user. Application.SetUnhandledExceptionMode(UnhandledExceptionMode.ThrowException); // Apply Surface globalization settings GlobalizationSettings.ApplyToCurrentThread(); using (App1 app = new App1()) { app.Run(); } }