我无法从中获取textboxes
在运行时创建的值。
我希望用户从 a 中选择一些东西checkedlistbox
,并输入他想要的任何值,这些值textboxes
是在每次单击按钮时创建的。
我怎样才能得到那些的名字texboxes
?它们真的存在吗?我是初学者,我真的不明白它们是如何创建的。
这是我创建的代码textboxes
。
private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
int x = 466;
int y = 84;
foreach (var itemChecked in checkedListBox1.CheckedItems)
{
int i = 0;
TextBox tb = new TextBox();
tb.Location = new Point(x, y);
tb.Name = "txtBox" + i++.ToString();
Controls.Add(tb);
y += 30;
}