-1

在 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) {
}

帮助,解决方案?

4

1 回答 1

1

您声明了名为“myx”的变量,但您使用的是未声明的变量“myc”

于 2012-05-22T19:52:50.800 回答