所以,我实际上用Java编写代码,但上周,我开始使用 C#编程,
有人可能会告诉我如何创建一个窗口?
但我想使用仅限代码创建它,而不使用Visual Basic等图形窗口编辑器。
清除C#代码。
谢谢,对任何能够回答的人都有帮助!
答案 0 :(得分:5)
这里有一个起点。 (这是一个控制台应用程序)只需记住在项目的引用中添加“system.windows.forms”:https://msdn.microsoft.com/en-us/library/wkze6zky.aspx 可能有办法!更好的方法,但这是其中一种方式。
using System.Windows.Forms;
namespace myform
{
class Program
{
static void Main(string[] args)
{
Form myform = new Form();
Button mybutton = new Button()
{
Text = "Hello",
Location = new System.Drawing.Point(10, 10)
};
mybutton.Click += (o, s) =>
{
MessageBox.Show("world");
};
myform.Controls.Add(mybutton);
myform.ShowDialog();
while (myform.Created)
{
}
}
}
}
另见@Sinatr评论