You have more ways to do this....
Every element has method "Visible"
Will hide the Text1 element
Then you can also create a new form for every page you need and then load it once the button is pressed and unload the main one
edit: I'm sorry I somehow did notice the .net so I don't know if that was helpful.
Every element has method "Visible"
Code:
Text1.Visible = False
Will hide the Text1 element
Then you can also create a new form for every page you need and then load it once the button is pressed and unload the main one
edit: I'm sorry I somehow did notice the .net so I don't know if that was helpful.