本文介绍了使用列表视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将在列表视图中选择的行分配给字符串数组?

how can i assign a row selected in listview to a string array?

推荐答案

ListView.SelectedListViewItemCollection coll =
            this.ListView1.SelectedItems;
     coll.CopyTo(myArray);


这篇关于使用列表视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 13:02