I have a ListView with 2 columns. When I click a ADD button, I want the first text to go to the first column, second text to the second column, but it's not working.
I am using Visual studio 2003, c# WPF.
listView1.View = View.Details;
ListViewItem lvwItem = listView1.Items.Add("TextBox1.Text");
lvwItem.SubItems.Add("TextBox2.Text");