C# 如何调试 Control.DoDragDrop 方法
我正在阅读国外源代码,有时会发生
NullException
拖放操作。问题是,所有参数永远不会为空,所以我希望能够以某种方式调试此方法。
有什么想法吗?
I'm reading a foreign source code and there occurs sometimes a
NullException
by Drag'n'Drop operation. The problem is, that all parameters are never null, so I'd like to be able to debug this method somehow.
Any ideas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
拖放过程中抛出的任何异常都会被 DoDragDrop 中的 catch all 处理程序吞掉。您可以在“输出”窗口中看到第一次机会异常,但仅此而已。要让调试器停止使用“调试 + 异常”,请勾选“CLR 异常上的抛出”复选框。
Any exception thrown while a drag+drop is in progress is swallowed by a catch all handler in DoDragDrop. You can see the first-chance exception in the Output window but that's all. To get the debugger to stop use Debug + Exceptions, tick the Thrown checkbox on CLR exceptions.
好的 !
看来Message Details中的Call Stack有助于定位问题。
无论如何..对我来说就足够了。
OK !
It seems that the Call Stack in Message Details helps to locate the problem.
Anyways.. for me it's sufficient.
解决方法(调试拖放方法)
...
这适用于 Visual Studio Community 2022 17.8.2。
Workaround (to debug drag and drop methods)
...
This works fine with Visual Studio Community 2022 17.8.2.