App.xaml.cpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. //
  2. // App.xaml.cpp
  3. // App 类的实现。
  4. //
  5. #include "pch.h"
  6. #include "MainPage.xaml.h"
  7. using namespace SDLPal;
  8. using namespace Platform;
  9. using namespace Windows::ApplicationModel;
  10. using namespace Windows::ApplicationModel::Activation;
  11. using namespace Windows::Foundation;
  12. using namespace Windows::Foundation::Collections;
  13. using namespace Windows::UI::Xaml;
  14. using namespace Windows::UI::Xaml::Controls;
  15. using namespace Windows::UI::Xaml::Controls::Primitives;
  16. using namespace Windows::UI::Xaml::Data;
  17. using namespace Windows::UI::Xaml::Input;
  18. using namespace Windows::UI::Xaml::Interop;
  19. using namespace Windows::UI::Xaml::Media;
  20. using namespace Windows::UI::Xaml::Navigation;
  21. // “空白应用程序”模板在 http://go.microsoft.com/fwlink/?LinkId=234227 上有介绍
  22. /// <summary>
  23. /// 初始化单一实例应用程序对象。这是执行的创作代码的第一行,
  24. /// 已执行,逻辑上等同于 main() 或 WinMain()。
  25. /// </summary>
  26. App::App()
  27. {
  28. InitializeComponent();
  29. Suspending += ref new SuspendingEventHandler(this, &App::OnSuspending);
  30. }
  31. /// <summary>
  32. /// 在最终用户正常启动应用程序时调用。 将在启动应用程序
  33. /// 将在启动应用程序以打开特定文件等情况下使用。
  34. /// </summary>
  35. /// <param name="e">有关启动请求和过程的详细信息。</param>
  36. void App::OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e)
  37. {
  38. #if _DEBUG
  39. // 调试时显示图形分析信息。
  40. if (IsDebuggerPresent())
  41. {
  42. // 显示当前帧速率计数器
  43. DebugSettings->EnableFrameRateCounter = true;
  44. }
  45. #endif
  46. auto rootFrame = dynamic_cast<Frame^>(Window::Current->Content);
  47. // 不要在窗口已包含内容时重复应用程序初始化,
  48. // 只需确保窗口处于活动状态
  49. if (rootFrame == nullptr)
  50. {
  51. // 创建一个 Frame 以用作导航上下文并将其与
  52. // SuspensionManager 键关联
  53. rootFrame = ref new Frame();
  54. //设置默认语言
  55. rootFrame->Language = Windows::Globalization::ApplicationLanguages::Languages->GetAt(0);
  56. rootFrame->NavigationFailed += ref new Windows::UI::Xaml::Navigation::NavigationFailedEventHandler(this, &App::OnNavigationFailed);
  57. if (e->PreviousExecutionState == ApplicationExecutionState::Terminated)
  58. {
  59. // TODO: 仅当适用时还原保存的会话状态,并安排
  60. // 还原完成后的最终启动步骤
  61. }
  62. if (rootFrame->Content == nullptr)
  63. {
  64. // 当导航堆栈尚未还原时,导航到第一页,
  65. // 并通过将所需信息作为导航参数传入来配置
  66. // 参数
  67. rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments);
  68. }
  69. // 将框架放在当前窗口中
  70. Window::Current->Content = rootFrame;
  71. // 确保当前窗口处于活动状态
  72. Window::Current->Activate();
  73. }
  74. else
  75. {
  76. if (rootFrame->Content == nullptr)
  77. {
  78. // 当导航堆栈尚未还原时,导航到第一页,
  79. // 并通过将所需信息作为导航参数传入来配置
  80. // 参数
  81. rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments);
  82. }
  83. // 确保当前窗口处于活动状态
  84. Window::Current->Activate();
  85. }
  86. }
  87. /// <summary>
  88. /// 在挂起应用程序执行时调用。 保存应用程序状态
  89. /// 无需知道应用程序会被终止还是会恢复,
  90. /// 并让内存内容保持不变。
  91. /// </summary>
  92. /// <param name="sender">挂起的请求的源。</param>
  93. /// <param name="e">有关挂起请求的详细信息。</param>
  94. void App::OnSuspending(Object^ sender, SuspendingEventArgs^ e)
  95. {
  96. (void) sender; // 未使用的参数
  97. (void) e; // 未使用的参数
  98. //TODO: 保存应用程序状态并停止任何后台活动
  99. }
  100. /// <summary>
  101. ///导航到特定页失败时调用
  102. /// </summary>
  103. ///<param name="sender">导航失败的框架</param>
  104. ///<param name="e">有关导航失败的详细信息</param>
  105. void App::OnNavigationFailed(Platform::Object ^sender, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs ^e)
  106. {
  107. throw ref new FailureException("Failed to load Page " + e->SourcePageType.Name);
  108. }