Debugging the InitializeComponent function in the Visual Studio designer
Clash Royale CLAN TAG #URR8PPP Debugging the InitializeComponent function in the Visual Studio designer In testing a number of changes to a custom WinForms control I'm encountering some issues which only occur when loading a form hosting the custom control in the Visual Studio designer. As a result, I'd like to understand if there is any method for debugging and stepping through (or logging in some way) the behaviour of the custom control's code when the Visual Studio designer loads. Well what's stopping you from just stepping into it as normal? I've just tried it and it seems fine. – Jon Skeet Feb 8 '14 at 21:54 I must be missing something obvious as the breakpoints in the custom control's code don't seem to be triggering when firing up the designer. – Chris Co...