我刚刚开始编写一个简单的Windows窗体,但是当我编译它时,按钮/文本框不显示。
只会弹出一个空白窗口。
答案 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);
}