我对ListBox
有疑问。
我创建了一个可以完成某些工作并返回ListBox
类型的方法。我尝试从方法中获取此Listbox
个实例,但ListBox
并未显示任何项目。
我希望知道如何使用方法中返回的ListBox
替换现有的Listbox
。
public ListBox GetProduct()
{
ListBox MyListBox = new ListBox();
MyListBox.Sorted = true;
MyListBox.Items.Add("aaaaa");
return MyListBox;
}
private void button2_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
listBox1 = GetProduct();
}
答案 0 :(得分:2)
试试这个:
public void GetProduct(ListBox MyListBox)
{
MyListBox.Sorted = true;
MyListBox.Items.Add("aaaaa");
}
private void button2_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
GetProduct(listBox1);
}