What Is The Difference Between Gridview And Listview In Windows App Development?
Answer»
The ListView and GridView controls are so similar, you can think of them as a single control. The major difference between the two is the manner in which they lay out their items, and it’s easy to change the layout so each control emulates the other.
The ListView control displays its data stacked vertically, much like a standard list box. Use this control to display an ordered list of data, like a list of EMAIL messages, a list of contacts, or search results.
The GridView control displays its data stacked HORIZONTALLY in rows (although you can alter this behavior and have it displayed in columns first, as well). You use this control when you need more space for rich VISUALIZATION of each item to be displayed.
The item container for a ListView is ListViewItem and the item container for a GridView is GridViewItem. But we can customize item container by setting the ItemContainerStyle PROPERTY.