public void Init()
 {
     cbxProvice.DataSource    = WeatherHelper.GetSupportProvince().ToList();
     cbxProvice.SelectedIndex = 0;
     cbxCity.DataSource       = WeatherHelper.GetSupportCity(cbxProvice.SelectedValue.ToString());
     cbxCity.SelectedIndex    = 0;
 }