int[] arr = int[100];
listBox1.DataSource = arr;
void ComboBox1SelectedIndexChanged(object sender, EventArgs e)
{
.....//some processes
listBox1.DataSource = null;
listBox1.DataSource = arr;
}
is not working,
还有,
listBox1.Refresh(); is not working,
还有,
listBox1.Update(); is not working,
我知道我可以使用 BindingList<T>
但我只能使用数组.
你能帮我如何刷新列表框吗?
can you help me how can i refresh listbox?
试试下面的
listBox1.DataBind()
这篇关于C#中的列表框刷新()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!