Invoked when application execution is being resumed. The source of the resume request. Details about the resume request.
| 133 | /// <param name="sender">The source of the resume request.</param> |
| 134 | /// <param name="args">Details about the resume request.</param> |
| 135 | void App::OnResuming(IInspectable const& sender, IInspectable const& args) |
| 136 | { |
| 137 | (void)sender; // Unused parameter |
| 138 | (void)args; // Unused parameter |
| 139 | |
| 140 | if (mPage) |
| 141 | mPage.as<OpenGLESPage>()->SetVisibility(true); |
| 142 | } |
| 143 | |
| 144 | /// <summary> |
| 145 | /// Invoked when Navigation to a certain page fails |
nothing calls this directly
no outgoing calls
no test coverage detected