Multi Column Listbox
问题 Is there a way to bind a Generic List to a multicolumn listbox, yes listbox...I know but this is what I am stuck with and can't add a grid or listview. Thanks 回答1: You could bind a list to a listbox like this: List<int> list = new List<int> { 1, 2, 4, 8, 16 }; listBox1.DataSource = list; As for multicolumn listbox documentation says ListBox.MultiColumn only places items into as many columns as are needed to make vertical scrolling unnecessary. If you want to show several columns of