Konu
c#Form çağırma
12-01-2009, 03:12:31
#2
eturhan
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
this.Hide();
f2.Show();
}
budur