gpt4 book ai didi

c# - 列表框的实时更新

转载 作者:行者123 更新时间:2023-11-30 15:08:30 27 4
gpt4 key购买 nike

我目前有一个由 XML 文件提供的列表框。我正在使用网络客户端获取 XML,然后使用以下代码将其解析到列表框中;

 XElement xmlSearch = XElement.Parse(e.Result);                    
lstbSearch.ItemsSource = from Search in xmlSearch.Descendants("e2event")
select new GetSearch
{
e2eventtitle = Search.Element("e2eventtitle").Value,
e2eventid = Search.Element("e2eventid").Value
};

现在文件可以大到150kb,这在手机上可能需要一些时间。所以我想知道是否可以在收到数据时将其显示在列表框中。保持良好性能的最佳方法是什么?

非常感谢,弥敦道

最佳答案

在收到所有数据之前,Web 客户端不会触发已完成的事件,因此我无法在数据到达时查看它。

关于c# - 列表框的实时更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5407893/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com