MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / OnResuming

Method OnResuming

proj.winrt/App.cpp:135–142  ·  view source on GitHub ↗

Invoked when application execution is being resumed. The source of the resume request. Details about the resume request.

Source from the content-addressed store, hash-verified

133/// <param name="sender">The source of the resume request.</param>
134/// <param name="args">Details about the resume request.</param>
135void 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected