如何删除Windows phone Emulator chrome?我的Windows手机模拟器在模拟器的右上角显示chrome。我想删除它。我该如何删除?
我想从右上角删除号码。
答案 0 :(得分:4)
这些数字用于调试时的诊断。在你的App.xaml.cs中会有一个块(在构造函数中):
// Show graphics profiling information while debugging.
if (System.Diagnostics.Debugger.IsAttached)
{
// Display the current frame rate counters.
Application.Current.Host.Settings.EnableFrameRateCounter = true;
将留置权注释掉或将其设置为false将在调试时删除计数器。在任何一种情况下,在调试器外部调用应用程序时都不会显示这些内容。