如果我有一个字符串列表,例如:
List<string> MyList = new List<string>();
MyList.Add("HELLO");
MyList.Add("WORLD");
有没有一种简单的方法可以使用MyList的内容填充ListBox?
最佳答案
尝试 :
List<string> MyList = new List<string>();
MyList.Add("HELLO");
MyList.Add("WORLD");
listBox1.DataSource = MyList;
看看ListControl.DataSource Property
关于c# - C#:从列表填充ListBox的最简单方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4321300/