0

假设我在 Windows 窗体应用程序中有一个列表框和两个按钮。当我单击 button1 时,“button1”被添加到列表框中。当我单击 button2 时,“button2”被添加为新条目。

我想要做的是在上一个条目旁边添加 button2 而不是作为新条目。类似“button1 + button2”的东西。这可以做到吗?

4

1 回答 1

0

您只需要更新表单上的现有项目,而不是添加新项目。看一下这个:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        listBox1.Items.Add("A");
        listBox1.Items[0] = listBox1.Items[0] + "B";
    }
}
于 2011-11-13T05:50:06.633 回答