每当我在 CLR 表单类中包含类时,它都会显示错误

问题描述 投票:0回答:0

我正在尝试将这些类包含在

Form.h
文件中,如下所示:

#include"Footballer.h"
#include"League.h"
#include"LeagueTeam.h"
#include"User.h"
#include"Team.h"
#pragma once

每当我运行表格时,我都会在

Form.cpp
文件中得到这些错误:

#include "Form.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThread]
void main(array<String^>^ args)
{
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);
    Application::Run(gcnew myproject::Form);
}

错误是:

1.类模板的参数太少

"std::array"
2."std::array" 模板参数太少 3.'^':不能在类型
'std::array'

上使用这个间接寻址

我真的不知道该怎么办,有什么解决办法吗?

class c++-cli clr windows-forms-designer
© www.soinside.com 2019 - 2024. All rights reserved.