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.
アイテムをの2つの列にロードする何かをしていますListView。
ListView
column1行にANDの下に項目がない場合、column2行が自動的に削除されるように実行できるループはありますか?
column1
column2
var lst = new ListView(); for (int i = lst.Items.Count - 1; i >= 0; i--) { var itemtoremove = //Put your condition here and get that item lst.Items.Remove(lst.Items.Find("key")); }