我似乎在向listview添加listviewitem时遇到问题。我使用的代码不会返回任何异常,所以我不知道什么是错的。继承我的代码:
public void addServerToLV(string text)
{
string computerName = text.Split('|')[0];
string userName = text.Split('|')[1];
string operatingSystem = text.Split('|')[2];
string ipAddress = text.Split('|')[3];
string location = text.Split('|')[4];
string totalRAM = text.Split('|')[5];
string totalCPU = text.Split('|')[6];
ListViewItem lvi = new ListViewItem(computerName);
lvi.SubItems.Add(userName);
lvi.SubItems.Add(operatingSystem);
lvi.SubItems.Add(ipAddress);
lvi.SubItems.Add(location);
lvi.SubItems.Add(totalRAM);
lvi.SubItems.Add(totalCPU);
serversListView.Items.Add(lvi);
}
因为没有任何反应似乎很奇怪。有人可以帮忙吗?感谢。