Enable debugging in design mode in Visual Studio

Is there a way to enable debugging from Windows Forms Designer in Visual Studio (any version up to Visual Studio 2010)?

What I mean, let's say I have a custom user control, and that control has a certain check on what it does when I set a specific property. I would like to be able to set a breakpoint somewhere inside this code and skip it to find out what happens when I set the property from the constructor.

+3
source share
1 answer

Yes, start another instance of Visual Studio. It is described in detail in this MSDN library article .

+3
source

Source: https://habr.com/ru/post/1749456/


All Articles