Exemplo n.º 1
0
 private void CountryPicker_ItemsPicked(ListPickerFlyout sender, ItemsPickedEventArgs args)
 {
     SelectedCountry = sender.SelectedItem as Country;
     ShowCountry();
 }
Exemplo n.º 2
0
 void LoadData()
 {
     SelectedCountry = App.methods.GetPlayerCountry();
     CountryPicker.SelectedItem = SelectedCountry;
     ShowCountry();
 }