Environment: Visual Studio 2017 1.12.111, C# Windows Forms Application
I am building a multi-formed C# application. I am working on the fourth or fifth form in the "form chain" (ie. starts with one form -> info is entered -> another form is opened x 3). Whenever I make changes to form 4, I need to fill in gibberish in form 1 - 3 which gets very annoying doing it many, many times during debugging. Is there a way I can stop the application execution after a specific form is initialized, change form and control properties -> save, and have the changes reflect on the actual form -> then continue? I'm not sure whether a breakpoint or some other technique can do this, or if it is even possible. It would really make my life easier if there was such a feature... I thank you in advance.