Is possible to take advantage of MultiColumn property when Items collections are managed by a DataSource? (Use of DataBound items).
I want to try the following snippet :
this.listBox1.Items.AddRange(new object[] {
"Item 1, column 1",
"Item 2, column 1",
"Item 3, column 1",
"Item 4, column 1",
"Item 5, column 1",
"Item 1, column 2",
"Item 2, column 2",
"Item 3, column 2"});
this.listBox1.MultiColumn = true;
Im using C# 3.5
Thanks