WinForm中的ListBox控件问题
在WinForm窗体中添加两个ListBox,和一个Button,单击Button控件把ListBox1中选中的值添加到ListBox2中去
这个只要自己画几个空间一试就出来了,学习就是这样,要勇于尝试
private void button2_Click(object sender, EventArgs e)
{
this.listBox2.Items.Add(this.listBox1.SelectedItem);
this.listBox1.Items.Remove(this.listBox1.SelectedItem);
}