// Internal for testing
 internal void InvokeResuming()
 {
     // Need to notify DeviceInformationHelper to refresh display cache here too because there is no guarantee that
     // it will automatically happen beforehand
     DeviceInformationHelper.RefreshDisplayCache();
     IsSuspended = false;
     ApplicationResuming?.Invoke(null, null);
 }
 private void InvokeResuming(object sender, object e)
 {
     _started   = true;
     _suspended = false;
     ApplicationResuming?.Invoke(sender, EventArgs.Empty);
 }
Beispiel #3
0
 private void InvokeResuming()
 {
     ApplicationResuming?.Invoke(null, EventArgs.Empty);
 }