I'm trying to make my console application into a winforms application.
The console version would ask for multiple inputs, then return output.
For the winforms version, I want to have multiple text boxes for the user to enter the data, with a button to reset them all, and another to actually perform the calculation. Then there'd be a display to show the result (I'm guessing it would be another text box).
Basically I've figured out how to add the buttons and text boxes for input/calculation, but I'm not sure how to display the output, or add functionality to all of this.
Edit: Should I be using Masked Text Boxes if I want to keep the user from using invalid input (anything that isn't a positive integer)?