0
How to use a single form to present several screens, such as login, registration, administration, etc?
It is possible using the panel component, but the rendering of it is slow, besides being unpleasant to develop in this way.
I may be talking nonsense, but I imagine a solution something like this.
frmPrincipal
= Contains Windows Form with fixed components.
duvLogin
= Contains the visual components that will be activated in the frmPrincipal
when requested.
duvRegistro
= Contains the visual components that will be activated in the frmPrincipal
when requested.
I would like to know the correct or most suitable way to organize the screens in the form.
use the suggestion of Shura16
– Rovann Linhalis