Windows窗体的内容不显示

时间:2015-07-12 18:29:48

标签: visual-studio-2013

我刚刚开始编写一个简单的Windows窗体,但是当我编译它时,按钮/文本框不显示。

只会弹出一个空白窗口。

1 个答案:

答案 0 :(得分:0)

看起来您的InitializeComponent函数中没有任何内容。 在函数中添加此代码,您应该看到一个写有“Connect”的按钮。

private void InitializeComponent()
{
   System.Windows.Forms.Button ConnectBtn = new System.Windows.Forms.Button();
   ConnectBtn.Location = new System.Drawing.Point(10, 10);
   ConnectBtn.Name = "ConnectBtn";
   ConnectBtn.Size = new System.Drawing.Size(75, 23);
   ConnectBtn.Text = "Connect";

   this.Controls.Add(ConnectBtn);
}