所以我想要的是在我的arraylist中添加字符串,然后在面板中将其显示为按钮,如果单击则将其从数组和面板中删除。
所以我拥有的是
添加按钮:
if (!tags.Contains(tag.Text) ) {
tags.Add(tag.Text);
organizeTags(tags);
}
else {
MessageBox.Show("Ese tag ya está registrado", "Error: ", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
label10.Text = tags.Count.ToString();
删除按钮:
private void Button_Click(object sender, EventArgs e)
{
Button button = new Button();
button = (Button)sender;
tags.Remove(button.Name);
organizeTags(tags);
}
和organizTags函数:
private void organizaTags(ArrayList tags)
{
panel1.Controls.Clear();
ArrayList botones = new ArrayList();
int j = 0, i = 0;
foreach (string element in tags) {
Button button = new Button();
button.Name = textBox6.Text;
button.Text = textBox6.Text;
button.Width = 100;
button.Left = i * 100;
button.Top = j * 30;
button.Click += new EventHandler(Button_Click);
panel1.Controls.Add(button);
i++;
if (i == 6)
{
j++;
i = 0;
}
}
}
但它工作可怕,它创建了2个具有相同名称的按钮,然后它只删除了第一个按钮,我不知道如何解决它。
答案 0 :(得分:0)
变化:
button.Name = textBox6.Text;
button.Text = textBox6.Text;
要:
button.Name = element;
button.Text = element;