文本文件未将信息加载到Listbox中

时间:2015-05-04 08:52:01

标签: vb.net listbox load

我正在尝试将文本文件中的内容转换为Listbox,但我无法让它工作。它可以正常使用文本框。

Private Sub btnLoad_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLoad.Click      
Dim filename As String  
        Dim recipereader As StreamReader  
        ofdLoad.ShowDialog()      
        filename = ofdLoad.FileName
        If filename <> "" Then  
            recipereader = File.OpenText(filename)  
            ListBox1.Text = recipereader.ReadToEnd  
            recipereader.Close()  
        End If  
    End Sub  
End Class

我错过了什么?

1 个答案:

答案 0 :(得分:0)

文字指的是完全不同的内容,但要将项目添加到您必须使用的列表框中:Listbox.Items.Add(yourItems)

ListBox1.Text = recipereader.ReadToEnd更改为ListBox1.Items.Add(recipereader.ReadToEnd)。请记住,这会将所有文本添加到一个ListBox项目中。