M
Morten Wennevik
Your question is still somewhat unclear.
You have two user interfaces? And a button will change the user interface
to something else?
Well, one way to do it would be to place the interfaces in separate panels.
Make B panel invisible, and if you click the button, make panel A invisible
and panel B visible.
private void button1_Click(object sender, System.EventArgs e)
{
panelA.Visible = false;
panelB.Visible = true;
}
Another may be tabcontrols
You have two user interfaces? And a button will change the user interface
to something else?
Well, one way to do it would be to place the interfaces in separate panels.
Make B panel invisible, and if you click the button, make panel A invisible
and panel B visible.
private void button1_Click(object sender, System.EventArgs e)
{
panelA.Visible = false;
panelB.Visible = true;
}
Another may be tabcontrols