这是一个新手问题,所以我很抱歉。
我正在用我在线抓取的值填写我的文本框并将它们传递给列表框,如下所示:
// textBox1.Text = test.ToString();
string[] names = result.Split('|');
foreach (string name in names)
{
listBox1.Items.Add(name);
}
但是,我正在尝试单击一个文件夹并将从那里显示的文件显示在我的 listbox1 中。这是我尝试过的:
using (var testy = new WebClient())
{
test = testy.DownloadString("http://server.foo.com/images/getDirectoryList.php?dir=test_folder");
string[] names1 = test.Split('|');
foreach (string name in names1)
{
listBox1.Items.Clear();
listBox1.Items.Add(name);
listBox1.Update();
}
}
但所发生的只是我的列表框清空并且没有刷新。我怎样才能实现我想做的事情?