我想在我的 wp7 应用程序中使用一个列表框,我想在其中显示特定目录中存在的所有文件的名称。我已经在我的项目本身中添加了包含所有文件的文件夹。我想填充该文件夹中的所有文件名。我怎样才能访问它?我正在使用它来绑定列表
string[] files = Directory.GetFiles("C:\\Users\\sony\\Documents\\Visual Studio 2010\\Projects\\MyChristmas\\MyChristmas\\recipe");
foreach (string f in files)
{
string entry1 = System.IO.Path.GetFullPath(f);
string entry = System.IO.Path.GetFileName(f);
listBox1.Items.Add(entry);
}
这可能是非常基本的,但我是一名学生,我自己学习这一切,所以请帮忙。