错误:“表达式必须具有类类型”C ++ / CLI

时间:2012-01-05 08:47:35

标签: .net c++-cli compiler-errors

不确定为什么这不会编译。我在这里犯了什么错误,如何解决?我正在尝试编译我在一个示例中找到的代码,但我的编译器必须具有比他们的更严格的设置或者可能是不同版本的编译器。代码应该只是打开一个窗体并显示一些文本。

using namespace System;
using namespace System::Windows::Forms;
using namespace System::Drawing;

public ref class MyForm : Form
{
public:

MyForm ()
    {
    Text = "Windows Forms Demo";
    }

void Main ()
    {
    Application.Run (gcnew MyForm());
    }

protected:
 void OnPaint (PaintEventArgs e)
    {

    e.Graphics.DrawString ("Hello, world", Font,
        gcnew SolidBrush (Color.Black), ClientRectangle);
    }   
}

2 个答案:

答案 0 :(得分:0)

您为override和访问方法编写了错误的语法。

 virtual void OnPaint(PaintEventArgs^ e) override
  {
    Form::OnPaint(e);
    e->Graphics->DrawString("Hello, world", gcnew System::Drawing::Font("Arial",20),  gcnew SolidBrush (Color::Black), ClientRectangle);
  }

并且不要使用void main()

[STAThreadAttribute]
int main()
{
     Application::Run(gcnew Form1());
     return 0;
}

答案 1 :(得分:0)

错误发生在Font,这是一个类。该调用需要一种字体,即Font实例。