Visual Studio 201x のシミュレーターに表示される数値

フレームレートカウンター(FrameRateCounter)の無効化方法
"App.xaml.cs"に記述されているEnableFrameRateCounterをtrueからfalseに変更する。
|
1 |
this.DebugSettings.EnableFrameRateCounter = false; |
|
1 2 3 4 5 6 |
#if DEBUG if (System.Diagnostics.Debugger.IsAttached) { this.DebugSettings.EnableFrameRateCounter = false; } #endif |