Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is this "tool" and how to disable it?

Tags:

c#

xaml

I'm currently developing a program and I have this that shows up at the top of the window. I don't know what it is or how to remove it. I only have it in this specific program so I guess it's related to something I have done.

enter image description here

like image 848
Zacary C Avatar asked Jan 01 '23 22:01

Zacary C


1 Answers

This is normal when running a XAML window in Debug. It let's you debug the window. If you build in release mode, you'll see that this disappears.

If you want to turn it off, uncheck this option in the settings Tools –> Options –> Debugging –> General –> Enable UI Debugging Tools for XAML.

like image 76
Gerrit Avatar answered Jan 11 '23 20:01

Gerrit