111,120
社区成员
发帖
与我相关
我的任务
分享
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" }));