我添加了鼠标单击事件并编写了一个方法
private void Form1_MouseClick(object sender, MouseEventArgs e)
{
int x = e.X;
int y = e.Y;
TextBox TextWithNumber = new TextBox();
TextWithNumber.Width = 100;
TextWithNumber.Height = 100;
TextWithNumber.Location = new Point(x, y);
TextWithNumber.Text = "TEXT";
TextWithNumber.BackColor = Color.Green;
TextWithNumber.ForeColor = Color.Red;
}
但是短信没有出现。请告诉我,我做错了什么?
编辑:正确答案:行控件.Add(带数字的文本);应添加到方法的末尾。
2条答案
按热度按时间h22fl7wq1#
您需要将新文本框添加到表单中:
utugiqy62#
您应该指定
Parent
-您放置TextBox
的控件: