visual studio2008 创建的window窗体应用程序怎么调出另一个已经建立的窗体?

2024-12-20 03:47:34
推荐回答(6个)
回答1:

你的是VC++的代码吧?
C#里面是
MyForm myform=new MyForm();
myform.Show();
MyForm就是你那个窗体的名称

回答2:

例如在textBox1中显示:this->textBox1->text += "要显示的内容"

回答3:

private void LoadAnotherForm_Click(object sender, EventArgs e)
{
//Form2是你想调用的窗体名称
Form2 form2 = new Form2();
form2.Show();
}

回答4:

(from1为窗体名称)
from1.onfocus=true;

回答5:

Response.Redirect("窗体.cs") ;

回答6:

可以用API
先把你建好的窗体的句柄拿到
再通过句柄调出