예제 #1
0
        public async void loadCountries()
        {
            txtPais.ItemsSource = await Countries.GetCloureList();

            txtPais.DisplayMemberPath = "Name";
            txtPais.SelectedValuePath = "Id";
            txtPais.SelectedValue     = "9";
        }