C#中的列表框刷新()

listbox Refresh() in c#(C#中的列表框刷新())

本文介绍了C#中的列表框刷新()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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#中的列表框刷新()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:C#中的列表框刷新()

基础教程推荐