Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リストビューで色の線を変更する方法。たとえばif line == 4、line is red
if line == 4
line is red
リスト全体を調べて、条件付きで各項目に色を付けたい場合は、次を使用できます。
foreach (ListViewItem lvw in myListView.Items) { if (lvw.SubItems[x].ToString() == "True") { lvw.BackColor = Color.Red; } }
または、常にインデックス 4 のアイテムに色を付けたい場合:
myListView.Items[4].BackColor = Color.Red;