listView1.Items.Add("1");
listView1.Items[0].SubItems.Add("1");
listView1.Items[0].SubItems[0].ForeColor = Color.Green;
listView1.Items[0].SubItems[1].ForeColor = Color.Yellow;请问为什么我这样设置 第一列和第二列都是绿色。第二列没有变成预期的黄色