Binding class to ListView
Posted
by Neir0
on Stack Overflow
See other posts from Stack Overflow
or by Neir0
Published on 2010-04-04T17:10:50Z
Indexed on
2010/04/04
17:13 UTC
Read the original article
Hit count: 414
Hi, I have a class
public class Foo
{
public List<string> list1 { get; set;}
public List<string> list2 { get; set; }
public string url;
}
and a ListView with two columns
How i can to bind instance of Foo class to ListView?
© Stack Overflow or respective owner