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 动态生成文本框
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = "本单位信息";
}
private void button1_Click(object sender, EventArgs e)
{
Label lable = new Label();
lable.Text = "负责人电话";
TextBox text = new TextBox();
this.Controls.Add(text);
}
private void button2_Click(object sender, EventArgs e)
{
Label lable = new Label();
lable.Text = "负责人电话";
TextBox text = new TextBox();
text.Location = new Point(lable.Width+12, 45);
this.Controls.Add(lable);
lable.Location = new Point(12, 45);
this.Controls.Add(text);
}
}
}
