在.NET中是否有ListBox loadfromfile方法等效?

时间:2012-05-01 19:16:55

标签: .net listbox delphi-prism listboxitems

我想在.NET中使用ListBox1.loadfromfile方法,但它似乎不存在或具有与该方法等效的任何东西。我在MSDN图书馆网站上搜索过,我空手而归。 .NET中是否有等效的方法?

提前致谢,

2 个答案:

答案 0 :(得分:2)

这可以让你接近:

listBox1.Items.AddRange(File.ReadAllLines(@"c:\test.txt"));

答案 1 :(得分:0)

我不知道.NET中任何模仿特定Delphi构造的东西。您可能需要手动将文本行加载到列表框中。这很简单:

// Read the file line by line
System.IO.StreamReader file = new System.IO.StreamReader(@"c:\somefile.txt");
while((line = file.ReadLine()) != null)
{
    //Add the line to the list box
    listBox1.Items.Add(line);
}

file.Close();