I can use the Hide()
to hide form in a win app. but also I could use Visible = false
to hide a form. if I use either way to show the hidden form I have to use Visible = true
.
- So which one should I use to hide the form,
Hide()
orVisible = false?
and why? - What happens when I use
Hide()
to hide form? - what happens if I use
Close()
to hide a form?