When I add a listview to my form and to the load event form, I write the code below, the elements added to the same line are not in separate lines, how can I add them to divided lines
listView1.MultiSelect = true;
listView1.CheckBoxes = true;
listView1.Items.Add("Item 1");
listView1.Items.Add("Item 22");
listView1.Items.Add("Item 333");
source
share