As the title says. Is there a way to have panels on top of each other instead of them grouping? I'm trying to do a order form UI for a homework assignment. The UI isn't the homework just trying to make it look good but can't figure out how to make it all work correctly.
Public Class Main
Private Sub btnOrder_Click(sender As Object, e As EventArgs) Handles btnOrder.Click
panelOrder.Visible = True
panelShipping.Visible = False
panelConfirm.Visible = False
End Sub
Private Sub btnShip_Click(sender As Object, e As EventArgs) Handles btnShip.Click
panelOrder.Visible = False
panelShipping.Visible = True
panelConfirm.Visible = False
End Sub
Private Sub btnConfirm_Click(sender As Object, e As EventArgs) Handles btnConfirm.Click
panelOrder.Visible = False
panelShipping.Visible = False
panelConfirm.Visible = True
End Sub
End Class
This is the little code I have left. The homework is just having some UI Elements as you can see in the image. I'm just trying to figure out a way to change panels like if I press the shipping button I enter the shipping panel and so on.