1
我想在.NET中使用ListBox1.loadfromfile方法,但它似乎並不存在或有任何等同於該方法。我在MSDN圖書館網站上搜索過,而且我空手而歸。在.NET中是否有等價的方法?在.NET中是否有ListBox loadfromfile方法等價?
在此先感謝,
我想在.NET中使用ListBox1.loadfromfile方法,但它似乎並不存在或有任何等同於該方法。我在MSDN圖書館網站上搜索過,而且我空手而歸。在.NET中是否有等價的方法?在.NET中是否有ListBox loadfromfile方法等價?
在此先感謝,
這可以讓你接近:
listBox1.Items.AddRange(File.ReadAllLines(@"c:\test.txt"));
我不知道什麼.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();