I have List of objects of class Book:
public static List<Book> ListBooks = new List<Book>() {
new Book(1, "Title", "Author", 2004) };
Now, I want to insert this list to ListView in Window Form. In WPF it's easy, but in Windows Forms "DataSource" does not work.
I added some columns, but how can I bind this list to listview?