我对ListView有疑问。我希望显示来自目录的文件,并在出现新文件/文件时更新(ApplicationData.Current.LocalFolder)。你是怎么做到的?
我的方法保存xml文件
public async void ExecuteNewFileXml()
{
var dom = new XmlDocument();
XmlElement x;
x = dom.CreateElement("OneGoal");
dom.AppendChild(x);
XmlElement goal = dom.CreateElement("Goal");
XmlElement stepOne = dom.CreateElement("StepOne");
goal.InnerText = GoalOfYear;
goalStepsList[1] = stepOne.InnerText;
x.AppendChild(goal);
x.AppendChild(stepOne);
StorageFile storageFile =
await
ApplicationData.Current.LocalFolder.CreateFileAsync("Goal.xml", CreationCollisionOption.GenerateUniqueName);
await dom.SaveToFileAsync(storageFile);
}
我有ListView,我希望查看所有带路径的文件。任何人添加两个目标,他有可能在ListView中查看。