PageRenderTime 46ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/V2/trunk/RI/Silverlight/StockTraderRI.Modules.Position.Silverlight.Tests/App.xaml.cs

#
C# | 75 lines | 41 code | 9 blank | 25 comment | 1 complexity | cc5eaf888674b9a67a3d659d15c7b967 MD5 | raw file
  1. //===================================================================================
  2. // Microsoft patterns & practices
  3. // Composite Application Guidance for Windows Presentation Foundation and Silverlight
  4. //===================================================================================
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
  7. // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
  8. // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  9. // FITNESS FOR A PARTICULAR PURPOSE.
  10. //===================================================================================
  11. // The example companies, organizations, products, domain names,
  12. // e-mail addresses, logos, people, places, and events depicted
  13. // herein are fictitious. No association with any real company,
  14. // organization, product, domain name, email address, logo, person,
  15. // places, or events is intended or should be inferred.
  16. //===================================================================================
  17. using System;
  18. using System.Collections.Generic;
  19. using System.Windows;
  20. using Microsoft.Silverlight.Testing;
  21. namespace StockTraderRI.Modules.Position.Tests
  22. {
  23. public partial class App : Application
  24. {
  25. public App()
  26. {
  27. this.Startup += this.Application_Startup;
  28. this.Exit += this.Application_Exit;
  29. this.UnhandledException += this.Application_UnhandledException;
  30. InitializeComponent();
  31. }
  32. private void Application_Startup(object sender, StartupEventArgs e)
  33. {
  34. // Hook up and execute this test project
  35. // For details: http://www.jeff.wilcox.name/fwlink/?0e0slb2
  36. this.RootVisual = (UIElement)UnitTestSystem.CreateTestPage();
  37. }
  38. private void Application_Exit(object sender, EventArgs e)
  39. {
  40. }
  41. private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
  42. {
  43. // If the app is running outside of the debugger then report the exception using
  44. // the browser's exception mechanism. On IE this will display it a yellow alert
  45. // icon in the status bar and Firefox will display a script error.
  46. if (!System.Diagnostics.Debugger.IsAttached)
  47. {
  48. // NOTE: This will allow the application to continue running after an exception has been thrown
  49. // but not handled.
  50. // For production applications this error handling should be replaced with something that will
  51. // report the error to the website and stop the application.
  52. e.Handled = true;
  53. try
  54. {
  55. string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace;
  56. errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n");
  57. System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight 2 Application " + errorMsg + "\");");
  58. }
  59. catch (Exception)
  60. {
  61. }
  62. }
  63. }
  64. }
  65. }