文本文件未将信息加载到列表框中

Text file not loading information into Listbox

我正在尝试将文本文件中的内容导入 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

我错过了什么?

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

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