当前位置: 代码迷 >> VB Dotnet >> [vb.net2010]向Listview两个列添加数据有关问题
  详细解决方案

[vb.net2010]向Listview两个列添加数据有关问题

热度:226   发布时间:2016-04-25 02:16:50.0
[vb.net2010]向Listview两个列添加数据问题
 Dim Key1 As String
            Dim Value1 As String
            Dim ListItem1 As New ListViewItem

            For index2 As Integer = 0 To OftenNumber1.Dictionary1.Count - 1
                Key1 = OftenNumber1.Dictionary1.Keys(index2).ToString
                Value1 = OftenNumber1.Dictionary1.Values(index2).ToString
                ListItem1.Text = Key1
                ListItem1.SubItems(0).Text = Value1
                ListView1.Items.Add(ListItem1)
                ' ListView1.Items.Add(Key1)
                ' ListView1.Items(index2).SubItems(index2).Text = Value1

好几年前学的东西都被忘着一干二净。什么也记不起。 哪里出错误了?

------解决方案--------------------
引用:
我想起来了。
因为,反复循环每次都要使用 ListItem1 = New ListViewItem 这个鬼!

对着呢!每次都要new下~
  相关解决方案