c#中动态创建textbox并且从数据库中获取表中数据添加到textbox中

         private void FormLugOther_Load(object sender, EventArgs e)
{
foreach (string str in FormLug.FieldListLug1)
{
try
{
Label label = new Label();
label.Text = str;
this.tableLayoutPanel1.Controls.Add(label);
TextBox textbox = new TextBox();
textbox.Name = "tb" + str;
textbox.Text = FormLug.tbValue.Rows[][str].ToString();
this.tableLayoutPanel1.Controls.Add(textbox);
}
catch
{
return;
}
}
}
上一篇:nodeJs的npm报错问题


下一篇:更改localhost默认打开的index.html的地址三步曲