录制时更改 UWP 应用程序的可见性

Change visibility of UWP application while recording

我正在尝试创建一个 UWP Xaml 应用程序,它具有与 Xbox Bar 相似的属性。我需要我的应用程序在使用屏幕录像机录制和呈现或使用屏幕捕获捕获时不可见,但在前台 运行。

我搜索过类似的应用程序或源代码,但遗憾的是找不到和参考。

IDE - Visual Studio 2019

Change visibility of UWP application while recording

好的,导出测试,重新编码后可以最小化录制应用程序。这里是 blog you could refer to make record app. For minimize the app you could place the following code in line 70 .

await Task.Delay(1000).ContinueWith(async (s) =>
                {
                    IList<AppDiagnosticInfo> infos = await AppDiagnosticInfo.RequestInfoForAppAsync();
                    IList<AppResourceGroupInfo> resourceInfos = infos[0].GetResourceGroups();
                    await resourceInfos[0].StartSuspendAsync();
                });