c# GUI代码错误

本文关键字:错误 代码 GUI | 更新日期: 2023-09-27 18:17:04

我在做一个关于c#的教程

表示树莓派。他们有一个c#代码的图像,但是图像的一部分被剪掉了,所以我不知道它之后是什么。下面是我使用的代码:

using System;
using System.Windows.Forms;
using System.Drawing;
class Program {
    public static void Main(string[] args) {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault();
        var f=new Form();
        f.SetBounds(0,0,100,100);
        Application.Run(f);
    }
}

我认为问题在这一行:

Application.SetCompatibleTextRenderingDefault();

因为这是我得到的错误:

test.cs(10,15):错误CS1501: No overload for method SetCompatibleTextRenderingDefault' takes 0' arguments/usr/lib/mono/2.0/System.Windows.Forms.dll(与先前错误相关的符号的位置)编译失败:1个错误,0个警告

有人能告诉我这段代码有什么问题吗?我也是c#的新手。

c# GUI代码错误

查看MSDN文档

Application.SetCompatibleTextRenderingDefault(false);