win 窗体 C++/CLI 如何使用标头中的 .cpp 类
您好,我有示例
#include "stdafx.h"
using namespace System;
ref class RefClass
{
public:
int X;
RefClass(int x)
{
X = x;
}
};
如何在 Form1.h 中使用此类?就像 RefClass^ d = gcnew WinFormsTest::RefClass();
public ref class Form1 : public System::Windows::Forms::Form
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
}
第二,我应该将 RefClass 代码放在 .h 中的哪里?或者.cpp?
Hello I have sample
#include "stdafx.h"
using namespace System;
ref class RefClass
{
public:
int X;
RefClass(int x)
{
X = x;
}
};
How can I use this class in Form1.h? Like RefClass^ d = gcnew WinFormsTest::RefClass();
public ref class Form1 : public System::Windows::Forms::Form
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
}
2nd Where i should place RefClass code in .h? or .cpp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先是 RefClass.h,然后你可以执行
auto refClass = gcnew RefClass();
RefClass.h first and then you can do
auto refClass = gcnew RefClass();