111,120
社区成员
发帖
与我相关
我的任务
分享
private void btnOK_Click( object sender, EventArgs e )
{
Label lbl = new Label();
lbl.AutoSize = true;
lbl.Text="今天我去吃饭了你们";
flowLayoutPanel1.Controls.Add( lbl );
TextBox txt = new TextBox();
txt.Size = new Size( 30, 13 );
flowLayoutPanel1.Controls.Add( txt );
lbl = new Label();
lbl.AutoSize = true;
lbl.Text = "了没?";
flowLayoutPanel1.Controls.Add( lbl );
//___ ___了没?
//flowLayoutPanel1
txt = new TextBox();
txt.Size = new Size( 30, 13 );
flowLayoutPanel1.Controls.Add( txt );
lbl = new Label();
lbl.AutoSize = true;
lbl.Text = "有这样问的吗。";
flowLayoutPanel1.Controls.Add( lbl );
}