Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2013 Windows 8.1 App Debugging Black Bar Top Right

I've been unable to figure out what the meaning of this black bar in the top right hand corner is while debugging my Win8 store app. Anyone have an idea how to remove it?

Note I was unable to take a screen snip of it so I had to use my phone.. weird.

enter image description here enter image description here

like image 239
aherrick Avatar asked Jan 17 '26 23:01

aherrick


1 Answers

Look in app.xaml.cs. The code to enable/disable is in the main function there. DebugSettings.EnableFrameRateCounter

The numbers are performance indicators.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.debugsettings.enableframeratecounter.aspx

Left to right Left side: App FPS and then App CPU Right side: Sys FPS and then Sys CPU

Pete

like image 70
Pete Avatar answered Jan 20 '26 22:01

Pete