Pages

Monday, May 16, 2011

Form inside Form ( MDI )

Menampilkan Form di dalam Form

public FormParent()
{
InitializeComponent();
this.IsMdiContainer = true;
}

private void button1_Click(object sender, EventArgs e)
{
Form2 frmchild = new Form2();
frmchild.MdiParent = this;
frmchild.Show();
}

2 comments:

  1. Hey im new here.

    Im sam, how is everyone?

    I look forwards to being a active memeber

    ReplyDelete
  2. just enter your email to widget on the right
    then klik SUBMIT

    thx

    ReplyDelete

ShareThis