Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

windows forms link listbox to array

List<string> listToBind = new List<string> { "AA", "BB", "CC" };
this.listBox1.DataSource = listToBind;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #windows #forms #link #listbox #array
ADD COMMENT
Topic
Name
6+9 =