I\'ve got a listView displaying a few text records. I need to increase the height of rows (working on a touch screen so I need thicker rows) without increasing the font size
In XAML
Test Test
In C# Codebehind
foreach (ListViewItem lv in myListView.Items) { lv.Height = 30; }
Hope you getting the Idea.