更改winform c#.net应用程序中动态添加的控件的值,如何跟踪动态添加的控件

时间:2011-06-28 18:06:33

标签: c# .net winforms controls dynamically-generated

我在tableLayoutpanel的行内动态添加了控件,添加的控件是LABELS,LINKLABEL和A PICTURE BOX。

现在,我想在按钮点击时将这些动态添加的控件(标签,链接标签)的值(文本属性)更改为某个指定值。

我该怎么做?请帮助代码。

这些动态控件是否有某种ID,就像我们在HTML中一样。

另外,我试图使用这个,但都是徒劳的............

Control[] GettableLayoutPanelControls = new Control[11];

          GettableLayoutPanelControls =  tableLayoutPanel1.Controls.Find("Control Name", true) ;

             GettableLayoutPanelControls.SetValue("CHANGED VALUE ", 0); //this line gives error..........

2 个答案:

答案 0 :(得分:3)

尝试这样的东西,它会添加11个新文本框(或任何其他你想要的控件):

int NumberOfTextBoxes = 11;
TextBox[] DynamicTextBoxes = new TextBox[NumberOfTextBoxes];
int ndx = 0;

while (ndx < NumberOfTextBoxes) 
{
    DynamicTextBoxes[ndx] = new TextBox();
    DynamicTextBoxes[ndx].Name = "TextBox" + ndx.ToString();
    // You can set TextBox value here:
    // DynamicTextBoxes[ndx].Text = "My Value";
    tableLayoutPanel1.Controls.Add(DynamicTextBoxes[ndx]);
    ndx++;
}

这将动态地将文本框添加到TableLayout控件。如果您需要稍后进行检索:

foreach (Control c in TableLayoutPanel1.Controls)
{
    if (c is TextBox)
    {
        TextBox TextBoxControl = (TextBox)c;

        // This will modify the value of the 3rd text box we added
        if (TextBoxControl.Name.Equals("TextBox3"))      
            TextBoxControl.Text = "My Value";
    }
}

答案 1 :(得分:0)

最直接的方法是跟踪私有字段中动态创建的控件。

private Label _myLabel;
_myLabel = new Label();
myLabel.Text = "Hello World!";
tableLayoutPanel1.Controls.Add(myLabel);
// ... later in the button click handler ... //
myLabel.Text = "Goodbye Cruel World!";

请记住,Windows Forms是一个有状态的环境,与ASP.NET不同,因此当用户与表单交互时,字段不会丢失其值。

ETA:

Label dynamic_label = new Label();
for(in i =0;i<6;i++){this.Controls.Add(dynamic_label);}

评论中的此代码会添加SAME标签5次。我不认为这是你的意图。设置Text属性时,它们将具有相同的文本,因为它们引用相同的控件。您可以使用我的解决方案并声明

Label myLabel1, myLabel2, ..., myLabel5;

如果您有这么多,以便在循环中声明它们,那么我会将它们存储在Dictionary<string, Label>中,这样您就不必搜索数组以找到正确的数组。