Visual Studio break all then f11 not break next event

Visual Studio Break all then f11 not breaking next event

来自 this post 我得到了这个:

For debugging a button click without setting breakpoints:

Start the app with the debugger. Get to the state immediately before the intended click. Go back to the debugger and press Pause then F11 (Step Into) -- nothing will happen. Go to the app and press the button -- the debugger should take over and drop you into the event handler.

这对我不起作用,但它以前对我有用。不知道为什么它非常棒但现在不起作用。有人吗?

请重置您的VS设置,然后重新调试。 我只是在我身边使用一个简单的 Winform 应用程序:

https://onedrive.live.com/embed?cid=55E83A59BF9AE3EB&resid=55E83A59BF9AE3EB%21893&authkey=AEmhE8zHWfnS4gE

使用以下步骤效果很好:

(1)调试应用程序(F5)。

(2)点击"Ctrl+Alt+Break",我会得到如下截图的结果。

(3)单击 F11(进入)。

(4)点击button1,会在button1的点击事件中打断点,然后使用F11单步进入。与button2事件相同的步骤。

我只是使用默认的 VS 设置和最新的 VS2015 企业版 14.0.25431.01 update 3。所以你可以使用上面的简单示例对其进行测试,它仍然存在你这边的问题,也许我们可以考虑VS 设置和 VS 设置。