gpt4 book ai didi

c# - C# GUI 代码错误

转载 作者:行者123 更新时间:2023-11-30 20:40:41 24 4
gpt4 key购买 nike

所以我在做 tutorial on 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:方法 SetCompatibleTextRenderingDefault' 没有重载0' 参数/usr/lib/mono/2.0/System.Windows.Forms.dll(与先前错误相关的符号位置)编译失败:1 个错误,0 个警告

有人能告诉我这段代码有什么问题吗?我也是 C# 的新手。感谢您的帮助。

最佳答案

查看 MSDN 文档 here

尝试

Application.SetCompatibleTextRenderingDefault(false);

关于c# - C# GUI 代码错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33048811/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com