I'm trying to build a LongListSelector (toolkit) using an ObservableCollection. I followed this tutorial and everything works fine with sample data. However, once I try to populate the list with data downloaded from the Internet, it becomes a mess! There are empty groups, items not placed correctly and few things are sorted alphabetically.
I'm using this code to create empty groups for all the letters:
private static readonly string Groups = "#abcdefghijklmnopqrstuvwxyz";
/* ... other things ... */
List<Country> empty = new List<Country>();
foreach (char c in Groups)
{
Group<Country> emptyGroup = new Group<Country>(c.ToString(), empty);
App.Colst.cityByCountryList.Add(emptyGroup);
}
Then I created a WebClient that downloads a xml file from the Internet and the analyze it, adding items to the groups in this way:
string id = dreader.GetAttribute("id");
string name = dreader.GetAttribute("name_it");
string citynumber = dreader.GetAttribute("citiesNumber");
if (id != null && id != "")
{
Group<Country> firstGroup = App.Colst.cityByCountryList[Groups.IndexOf(name.Substring(0, 1).ToLower())];
Country newCountry = new Country() { Lett = name.Substring(0, 1).ToLower(), Name = name };
firstGroup.Add(newCountry);
}
and this is the result(I'm a new user and I can't upload an image... so I'm posting the link):
As you can see, the group "f" has been correctly created, but "Francia" should be under "f" instead of "m". Also, "f" should be before "g": sometimes groups are sorted correctly (for example "Austria" is not the first one in the xml file, but it's showed at the top of the list, where it should be!) and sometimes not ("Italia" is one of the first countries listed in the file, but in the list it's after the "u"!) ...
Any ideas?
Thanks anyway.