窗体控件不显示



我正在制作一个显示表单的控制台应用程序。我从头开始创建了表单。当我运行程序时,窗体显示,但我添加的控件不显示。

我的代码:

using System;
using System.Windows.Forms;
using System.Drawing;
namespace form
{
    public class main
    {
        public static void Main()
        {
            Application.EnableVisualStyles();
            Application.Run(new FrmLogin());
        }
    }
    public class FrmLogin : Form
    {
        public void Frm()
        {
            this.Size = new Size(400, 600);
            Button btn = new Button();
            btn.Text = "Something";
            btn.Size = new Size(10, 10);
            btn.Location = new Point(10, 10);
            btn.UseVisualStyleBackColor = true;
            this.Controls.Add(btn);
        }
    }
}

你永远不会调用你的FrmLogin.Frm方法。 如果您打算将其作为构造函数,请删除void并将其重命名为 FrmLogin ,如下所示:

public FrmLogin()
{
    this.Size = new Size(400, 600);
    Button btn = new Button();
    btn.Text = "Something";
    btn.Size = new Size(10, 10);
    btn.Location = new Point(10, 10);
    btn.UseVisualStyleBackColor = true;
    this.Controls.Add(btn);
}

如果你想从构造函数调用它,请添加一个名为 FrmLogin 的构造函数并让它调用 Frm ,如下所示:

public FrmLogin()
{
    Frm();
}

打开一个新的 Windows 窗体应用程序并观察来自 form.designer.cs 和程序的源代码.cs 你会看到你错在哪里。

相关内容

  • 没有找到相关文章

最新更新