如何在flowLayoutPanel c#中存储第一个控件?

时间:2017-06-05 12:07:08

标签: c#

我是C#的新手,我使用的是Windows窗体。

我有flowLayoutPanel,我以编程方式为其添加了一些buttons。 我要做的是:我想将位于button的第一个flowLayoutPanel保存到ButtonToSave对象中。

   flowLayoutPanel1.FlowDirection= FlowDirection.LeftToRight

   private void AddButtons_Click(object sender, EventArgs e)
    {
       Button btn = new Button();                       

       flowLayoutPanel1.Controls.Add(btn);
    }


 private void StoreTheFirstButton_Click(object sender, EventArgs e)
    {

          Button ButtonToSave = new Button(); 
          ButtonToSave = "First button in flowLayoutPanel1"
    }

flowLayoutPanel1事件被提出时,有人知道如何将ButtonToSave中的第一个按钮保存到StoreTheFirstButton吗?

谢谢

1 个答案:

答案 0 :(得分:0)

请尝试以下代码。您可能希望在发布后(How to (create and) add components to a Table Layout?)查看我的回复:

Select * from tbl where Column_Name & 1=1