gpt4 book ai didi

c# - 来自控制台的 Windows 窗体

转载 作者:太空狗 更新时间:2023-10-29 22:13:15 24 4
gpt4 key购买 nike

我想使用 C# 从控制台生成一个 Windows 窗体。大致类似于 Linux 中的 display ,修改其内容等。这可能吗?

最佳答案

您应该能够为 System.Windows.Forms 添加引用,然后就可以开始了。您可能还必须将 STAThreadAttribute 应用于应用程序的入口点。

using System.Windows.Forms;

class Program
{
[STAThread]
static void Main(string[] args)
{
MessageBox.Show("hello");
}
}

...更复杂...

using System.Windows.Forms;

class Program
{
[STAThread]
static void Main(string[] args)
{
var frm = new Form();
frm.Name = "Hello";
var lb = new Label();
lb.Text = "Hello World!!!";
frm.Controls.Add(lb);
frm.ShowDialog();
}
}

关于c# - 来自控制台的 Windows 窗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1627014/

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