我在运行时向我的表单添加了一个 TextBox,这是一个全新的项目,所以这是我迄今为止唯一的代码,所以我 100% 肯定这不是我自己做的:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
TextBox box = new TextBox();
box.Location = new Point(2, 2);
this.Controls.Add(box);
}
}
}
为什么文本框不显示?什么都没有。我在所有地方都设置了断点,但没有一个可以帮助我。一切看似正常,其实不然。