现在我的应用程序读取带有纬度和经度节点(7k 个位置)的 XML。使用滑块,用户可以选择他想在地图上显示的节点。现在,每次 ValueChanged 都会执行以下代码:
foreach (HueDataClass dataClass in plotThumbList)
{
Pushpin Lamp = new Pushpin();
Lamp.Location = new Microsoft.Maps.MapControl.WPF.Location(dataClass.Lat, dataClass.Lon);
hueMap.Children.Add(Lamp);
}
有时应用程序会冻结一秒钟,然后显示所有图钉。我怎样才能提高性能?
亲切的问候,尼尔斯