我想在UWP中隐藏调试信息

时间:2017-02-20 07:10:15

标签: debugging uwp

UWP 中进行调试时,会显示如下所示的红色方框,调试信息。 我怎么能隐藏这个?

enter image description here

1 个答案:

答案 0 :(得分:3)

它被称为帧速率计数器。这是显示的,因为您处于调试模式。要在调试模式下删除此功能,您需要转到App.xaml.cs并转到OnLaunched()事件。

enter image description here

改变这个:

this.DebugSettings.EnableFrameRateCounter = true;

到此:

this.DebugSettings.EnableFrameRateCounter = false;

它应该删除Frame计数器。

希望它有所帮助!