ListView (2)
Having studied the basic function of the ListView control in the previous post, ListView (1) , a variable "books" was declared as a list of book titles. But book information includes some attributes, author, date of issue etc., as well as title. So it seems to be good that book information is declared as a Class as below. Book Class public class Book { public string Title { get; set; } public string Author { get; set; } } The following sample code displays the ListView of book information declared as class type above. MainPage.xaml <? xml version = " 1.0 " encoding = " utf-8 " ?> < ContentPage xmlns = " http://xamarin.com/schemas/2014/forms " xmlns : x = " http://schemas.microsoft.com/winfx/2009/xaml " xmlns : local =...