使用XML文件中的数据填充GridView

时间:2013-03-27 00:36:14

标签: c# xaml windows-8

因此,在Windows 8平板电脑应用程序中,我有一个具有以下属性的GridView:

    <Grid>
        <GridView ItemsSource="{Binding Source={StaticResource manager}, Path=TestStrings}" />
    </Grid>

在另一个类中链接到属性TestStrings。

public List<string> TestStrings
    {
        get
        {
            List<Location> locations = getLocations(); 

            List<string> testStrings = new List<string>();

            for (int i = 0; i < locationList.Count; i++)
            {
                testStrings.Add(locationList[i].Name);
            }

            return testStrings;
        }
    }

    public async Task<List<Location>> getLocations()
    {
        return await xmlParser.getLocations();
    }

如果我只是用值填充字符串List并返回它,GridView会显示值,没问题。但是,问题是我需要调用异步方法。我的大多数数据都来自XML文件。要访问XML文件,我必须从存储中提取文件,据我所知,这需要我等待。这是方法:

public async Task<List<Location>> getLocations()
    {
        StorageFolder storageFolder = ApplicationData.Current.LocalFolder;
        StorageFile file = await storageFolder.GetFileAsync("main.xml");
        XmlDocument xmlDoc= await XmlDocument.LoadFromFileAsync(file);
        XDocument xml = XDocument.Parse(xmlDoc.GetXml());

        List<Location> locationList =
            (from _location in xml.Element("apps").Elements("app").Elements("locations").Elements("location")
             select new Location
             {
                 Name = _location.Element("name").Value,
             }).ToList();

        return locationList;
    }

如您所见,我等待两次迫使我将其作为异步方法,这意味着调用它的所有方法都必须是异步的。但是,XAML中的绑定属性要求我访问一个不能异步的属性。

我觉得我错过了什么。我最近从Android转移到Windows 8开始编程,所以很多对我来说都是新的。当然,将文件中的数据显示到UI是一项常见任务。处理它的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

尝试将列表类型从List更改为ObservableCollection,然后查看是否可以解决问题。您对异步行为的观察是正确的:对列表的修改将触发通知绑定引擎任何已更改的内容,并且更改将在稍后的某个未知时间发生。使用ObservableCollection时会发出通知。