本文介绍了在for循环中将项目(文本)添加到multicollumn listview的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在listview vb net 2012中创建了2个collumns,如何在列中添加文本?
这个有用:
I have created 2 collumns in a listview vb net 2012, how can I add text in columns?
this works :
ListView1.Items(0).SubItems(0).Text = x.ToString
但是如何在for ...中添加多个值...下一循环
这不起作用
but how can I add multiple values in a for...next loop
this doesn't work
For c = 0 To 10.....
ListView1.Items(c).SubItems(0).Text = x.ToString
推荐答案
For i = 0 To 10
ListView1.items.add(("fdghhdhd").subitems.Add("fdghhdhd")
发现它谢谢你ichael的评论
found it thank you michael for the comment
这篇关于在for循环中将项目(文本)添加到multicollumn listview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!