在 Visual C++(Visual Studio windows 窗体项目)中,如何在 Form 构造函数中声明类对象,以便我可以在按钮中对象方法(点击事件)?
我在 .h 和 .cpp 中有 MyClass 类,我在类中的方法很少。在 form.h 文件中包含 .h。在 Form1 构造函数中创建了一个类的对象:
MyClass^ myx = gcnew MyClass();
但我不能用于myc->exampleMethod()
:
private: System::Void PlayBtn_Click(System::Object^ sender, System::EventArgs^ e) {
}
帮助,解决方案?