对不起我的英语... 我是学习Visual C ++ 2008的初学者,现在我在两种形式之间进行通信时遇到了问题 我有两种形式,称为Form1和Form2
form1包含一个用于向form2中的listBox1添加文本的按钮,例如“Test”,我在Form1中添加了“#include Form2.h”,下面显示了一些代码,但是没有工作
这是代码
Form1中:
#pragma once
#include "Form2.h"
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
Application::Exit();
}
private: System::Void button3_Click(System::Object^ sender, System::EventArgs^ e)
{
Form2^ frm = gcnew Form2();
frm->ShowDialog();
}
private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e)
{
Form2^ frm = gcnew Form2();
frm->listBox1->items->Add("Test");
}
};
}
这是 的窗体2:
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
Close();
}
};
}
请帮帮我 感谢