我有两种形式Form1和Form2。 我怎么能在代码(Form1.h)中显示Form2(类似于Form2 :: Show())
答案 0 :(得分:2)
编辑.cpp文件并安排#include指令,将第二个表单放在第一位:
#include "stdafx.h"
#include "Form2.h"
#include "Form1.h"
然后在按钮的Click事件处理程序中编写这样的代码:
System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
Form2^ frm = gcnew Form2;
frm->Show(this);
}
答案 1 :(得分:1)
您需要创建Form2
类的新实例并调用其Show()
方法。