Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
listView1.Columns.Add("Column Name", -2, HorizontalAlignment.Left)
ListViewItem MyItem = listView1.Items.Add("Item1");
MyItem.SubItems.Add("SubItem1");
MyItem.SubItems.Add("SubItem2");