Skip to content

Instantly share code, notes, and snippets.

@wirasetiawan29
Created November 25, 2014 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wirasetiawan29/194f85037983b7e9df03 to your computer and use it in GitHub Desktop.
Save wirasetiawan29/194f85037983b7e9df03 to your computer and use it in GitHub Desktop.
void LongListSelectorAlphabetic_Loaded(object sender, RoutedEventArgs e)
{
List<Person> people = new List<Person>
{
new Person
{
Name = "Rieky",
Surname = "Acong",
City = "Inggris"
},
new Person
{
Name = "Satriyo",
Surname = "Iyol",
City = "Milan"
},
new Person
{
Name = "Fatnan",
Surname = "Nan",
City = "China"
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment