111,094
社区成员




string[] strs = new string[3];
strs[0] = "000";
strs[1] = "aaa";
strs[2] = "eee";
this.listView1.Items.Add(new ListViewItem(strs));
this.listView1.SubItems.AddRange(new string[](" 0001", "abc", "eeee"));
this.listView1.Items.Add(new ListViewItem(new string[] { " 0001", "abc", "eeee" }));