如果我有一个字符串列表,例如:
If I have a list of strings, eg:
List<string> MyList = new List<string>();
MyList.Add("HELLO");
MyList.Add("WORLD");
有没有一种简单的方法可以使用 MyList 的内容来填充 ListBox?
Is there an easy way to populate a ListBox using the contents of MyList?
试试看:
List<string> MyList = new List<string>();
MyList.Add("HELLO");
MyList.Add("WORLD");
listBox1.DataSource = MyList;
看看 ListControl.DataSource 属性
这篇关于C#:从列表中填充列表框的最简单方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!