调试时隐藏弹出窗口

时间:2013-05-12 00:45:25

标签: wpf debugging popup hide breakpoints

当我点击一个断点而弹出窗口的“IsOpen”属性设置为true时,它会在visual studio上呈现,模糊我想要逐步完成的代码。

无论如何我能解决这个问题吗?

我已经尝试通过订阅主窗口已停用的事件来检测何时出现断点,但在这种情况下它不会被调用。

1 个答案:

答案 0 :(得分:0)

如果应用程序在调试模式下运行,您可以设置条件逻辑来执行某些任务。

#if DEBUG
  //Logic to hide popup
#endif

See this article for full details.