I’m just getting started with winforms in C# and things are going well, except I want to learn how to do something like:
if user presses “proceed” button, it will run some code, and change the form, so that there are more options available to the user on the form. In other words, I want to make my forms more than one “page”. I hope that all makes sense. Any help would be appreciated, thanks!
You could have a tab control with separate tabs that you move through that are disabled until they are needed. Each one could have its own controls, etc… You could have the controls disabled on the main form and then enable them, etc… There are myriad ways that you could approach this problem.
For winforms: