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.
私はlistViewの項目を繰り返し処理しています:
for (int i = 0; i < ld.Items.Count; i++) { ld.Items[i].SubItems[0].Text = (i+1).ToString(); }
アイテムがlistViewに追加されたのと同じ順序で繰り返されるようです。必要なのは、アイテムが表示される順序でアイテムを反復処理することです (たとえば、並べ替えの後)。