Binding to a listview

  • Thread starter Thread starter Anthony Sox
  • Start date Start date
A

Anthony Sox

anyone know how to bind a collection of objects to a listview as with the
datagrid or listbox control.

for example the listbox control binds to collection objects as follows.

lst.DataSource = Regions
lst.DisplayMember = "Country"

is there a way of doing the same with a listview.

Thank you
 
Anthony,
anyone know how to bind a collection of objects to a listview as with the
datagrid or listbox control.

for example the listbox control binds to collection objects as follows.

lst.DataSource = Regions
lst.DisplayMember = "Country"

is there a way of doing the same with a listview.
For this is an easy answer No, for that is the datagrid.

Cor
 
Back
Top