Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在弹出窗口的“IsOpen”属性设置为 true 时遇到断点时,它会呈现在 Visual Studio 的顶部,从而掩盖了我试图单步执行的代码。
无论如何我可以解决这个问题吗?
我尝试通过订阅主窗口停用事件来检测何时遇到断点,但在这种情况下它不会被调用。
如果应用程序在调试模式下运行,您可以设置条件逻辑来执行某些任务。
#if DEBUG //Logic to hide popup #endif
有关完整详细信息,请参阅本文。