Link between 2 interface

  • Thread starter Thread starter Morten Wennevik
  • Start date Start date
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
 
e.g i have create 2 from(user interface) in .net which from A and from B
I have create a Button in from A. what i want is that when I click the
button the from B will come up
is anyone can provide some sample code to me?>
 
You mean the login button, login panel, login text field ??????
You really need to be more explicit. Look up Show, Hide, Visible etc...


good luck

JIM
 
I mean I create 2 window form. eg "Login" and "ChangePassword".
"Login" window form has a button called "cahnge password"
After I click the "change password" button, the "ChangePassword" window form
will come up.
I'm sorry for my unclear english...........
 
Back
Top