I try to make a winform contains the ListView as Details (ListView1.View = \"Details\") This ListView has 2 SubItems and i need to Wrap String and put it to SubItem .
You can wrap to the next line in a listitem's text using the '\n' character, e.g.:
listView1.Items.Add("apples\noranges\nbananas"); listView1.Items.Add("kiwis\ngrapefruits\nwatermelons");