Example #1
0
 void client_GetCountryCompleted(object sender, GetCountryCompletedEventArgs e)
 {
     if (e.Result != null)
     {
         ListCountry.Clear();
         ListCountry = e.Result.ToList();
         client.GetProvinceCityAsync("");//获取所有的省、市、县
     }
 }