码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2014-11-30 21:26:56      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   os   sp   for   on   

bubuko.com,布布扣
 1         private void FormLugOther_Load(object sender, EventArgs e)
 2         {
 3             foreach (string str in FormLug.FieldListLug1)
 4             {
 5                 try
 6                 {
 7                     Label label = new Label();
 8                     label.Text = str;
 9                     this.tableLayoutPanel1.Controls.Add(label);
10                     TextBox textbox = new TextBox();
11                     textbox.Name = "tb" + str;
12                     textbox.Text = FormLug.tbValue.Rows[0][str].ToString();
13                     this.tableLayoutPanel1.Controls.Add(textbox);
14                 }
15                 catch
16                 {
17                     return;
18                 }
19             }
20         }
View Code

 

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

标签:style   blog   http   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/xzh1993/p/4133583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!