ST
stanleyj
Syncfusion Team
December 19, 2005 02:29 PM UTC
Hi Falk,
You can use ArrayList as DataSource, provided DisplayMember is used. Here is the code snippet for the ArrayList as DataSource to GLC.
ArrayList al = new ArrayList();
al.Add(new numbers("One"));
al.Add(new numbers("Two"));
this.gridListControl1.DataSource = al;
this.gridListControl1.DisplayMember = "Number";
//
//
//
public class numbers
{
private string num;
public numbers(string number)
{
this.num = number;
}
public string Number
{
get
{
return num;
}
}
}
Refer also the sample that is shipped \Syncfusion\Essential Studio\4.1.0.4\windows\Grid.Windows\Samples\Quick Start\GridListControlSample
Best regards,
Stanley