Пример #1
0
 private void CountryPicker_ItemsPicked(ListPickerFlyout sender, ItemsPickedEventArgs args)
 {
     SelectedCountry = sender.SelectedItem as Country;
     ShowCountry();
 }
Пример #2
0
 void LoadData()
 {
     SelectedCountry = App.methods.GetPlayerCountry();
     CountryPicker.SelectedItem = SelectedCountry;
     ShowCountry();
 }