I need to show ListView items in TILE structure.. (like a clickable product view )
I am new to C#, therefore I couldn't find a property for changing ListView items column width. What is the ListView property to control item width?
listView1.Items.Clear();
while (rd.Read())
{
//MessageBox.Show(rd.GetString(1));
listView1.Items.Add(rd.GetString(1), 3);
}