Beispiel #1
0
        public void CountrySelection(int index)
        {
            CountryVisible = !CountryVisible;//true

            // display entry selected text value
            CountryName = CountryModel[index].country;
            OnPropertyChanged("CountryName");
            Area = new AreaModel();
            //selected value defined by index then move to next url to display
            web.RequestStateList(CountryModel[index]);
        }