conrad asked 2017-06-15 23:44:02 UTC
I'm executing this code:
for (int i=0; i< 15; i++)
{
ListViewItem lvi = new ListViewItem();
lvi.SubItems.Add("One");
lvi.SubItems.Add("Two");
lvi.SubItems.Add("Three");
this.listView1.Items.Add(lvi);
}
and getting this result (image attached):
conrad asked 2017-06-15 23:44:02 UTC
I'm executing this code:
for (int i=0; i< 15; i++)
{
ListViewItem lvi = new ListViewItem();
lvi.SubItems.Add("One");
lvi.SubItems.Add("Two");
lvi.SubItems.Add("Three");
this.listView1.Items.Add(lvi);
}
and getting this result (image attached):