in Tools/Cam360/MainPage.xaml.cs [669:685]
private async Task StopPreviewAsync()
{
try
{
_mediaPlayerProjection = null;
_mediaPlayer = null;
_isPreviewing = false;
}
catch (Exception ex)
{
TraceExceptionAsync(ex);
}
finally
{
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => { RecordButton.IsEnabled = false; PhotoButton.IsEnabled = false; });
}
}