示例#1
0
        private void cmbProvince_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            this.cmbCity.IsEditable = true;
            ComboBoxItem cbiProvience = this.cmbProvince.SelectedItem as ComboBoxItem;

            if (cbiProvience != null)
            {
                AddressComponent.AddressPoco proviencesAP = cbiProvience.DataContext as AddressComponent.AddressPoco;
                if (proviencesAP != null)
                {
                    System.Collections.Generic.List <AddressComponent.AddressPoco> cityList = this.Citys[proviencesAP.Code] as System.Collections.Generic.List <AddressComponent.AddressPoco>;
                    if (cityList != null)
                    {
                        this.cmbCity.Items.Clear();
                        foreach (AddressComponent.AddressPoco ap in cityList)
                        {
                            ComboBoxItem cbiCity = new ComboBoxItem();
                            cbiCity.DataContext = ap;
                            cbiCity.Content     = ap.Name;
                            this.cmbCity.Items.Add(cbiCity);
                        }
                        AddressComponent.cbProvience = this.cmbProvince.Text;
                    }
                }
            }
        }
示例#2
0
 private void InitAddressData()
 {
     System.Collections.Generic.List <string> list = this.LoadAddressTxt();
     if (list != null)
     {
         char[] reg = new char[]
         {
             '#'
         };
         for (int i = 0; i < list.Count; i++)
         {
             AddressComponent.AddressPoco address = new AddressComponent.AddressPoco();
             string[] s = list[i].Split(reg);
             if (s.Length == 2)
             {
                 address.Code = s[0];
                 address.Name = s[1];
                 char[] values     = address.Code.ToCharArray();
                 int    countValue = 0;
                 for (int j = 2; j < values.Length; j++)
                 {
                     countValue += int.Parse(values[j].ToString());
                 }
                 if (countValue == 0)
                 {
                     if (!this.Proviences.ContainsKey("100000"))
                     {
                         this.Proviences.Add("100000", new System.Collections.Generic.List <AddressComponent.AddressPoco>());
                     }
                     System.Collections.Generic.List <AddressComponent.AddressPoco> listTemp = this.Proviences["100000"] as System.Collections.Generic.List <AddressComponent.AddressPoco>;
                     listTemp.Add(address);
                 }
                 else
                 {
                     countValue = 0;
                     for (int z = 4; z < values.Length; z++)
                     {
                         countValue += int.Parse(values[z].ToString());
                     }
                     if (countValue == 0)
                     {
                         string provienceCode = this.getProvinceCode(int.Parse(address.Code)).ToString();
                         if (!this.Citys.ContainsKey(provienceCode))
                         {
                             this.Citys.Add(provienceCode, new System.Collections.Generic.List <AddressComponent.AddressPoco>());
                         }
                         System.Collections.Generic.List <AddressComponent.AddressPoco> cityList = this.Citys[provienceCode] as System.Collections.Generic.List <AddressComponent.AddressPoco>;
                         cityList.Add(address);
                     }
                 }
             }
         }
         System.Console.WriteLine("InitAddressData");
     }
 }
 ////internal Canvas content;
 ////internal ComboBox cmbCountry;
 ////internal ComboBox cmbProvince;
 ////internal ComboBox cmbCity;
 ////private bool _contentLoaded;
 public AddressComponent()
 {
     this.InitializeComponent();
     AddressComponent.AddressPoco ap = new AddressComponent.AddressPoco();
     ap.Code = "100000";
     ap.Name = "中国";
     ComboBoxItem cbi = new ComboBoxItem();
     cbi.Content = ap.Name;
     cbi.DataContext = ap;
     this.cmbCountry.Items.Add(cbi);
     this.InitAddressData();
 }
示例#4
0
        ////internal Canvas content;
        ////internal ComboBox cmbCountry;
        ////internal ComboBox cmbProvince;
        ////internal ComboBox cmbCity;
        ////private bool _contentLoaded;
        public AddressComponent()
        {
            this.InitializeComponent();
            AddressComponent.AddressPoco ap = new AddressComponent.AddressPoco();
            ap.Code = "100000";
            ap.Name = "中国";
            ComboBoxItem cbi = new ComboBoxItem();

            cbi.Content     = ap.Name;
            cbi.DataContext = ap;
            this.cmbCountry.Items.Add(cbi);
            this.InitAddressData();
        }
示例#5
0
        public string GetAddressCode(object obj)
        {
            string result;

            if (obj == null)
            {
                result = "";
            }
            else
            {
                ComboBoxItem cbi = obj as ComboBoxItem;
                AddressComponent.AddressPoco ap = cbi.DataContext as AddressComponent.AddressPoco;
                result = ap.Code;
            }
            return(result);
        }
示例#6
0
        private void cmbCountry_SelectionChanged_1(object sender, SelectionChangedEventArgs e)
        {
            this.cmbProvince.IsEditable = true;
            ComboBoxItem cbiCountry = this.cmbCountry.SelectedItem as ComboBoxItem;

            AddressComponent.AddressPoco coutryAP = cbiCountry.DataContext as AddressComponent.AddressPoco;
            System.Collections.Generic.List <AddressComponent.AddressPoco> provienceList = this.Proviences[coutryAP.Code] as System.Collections.Generic.List <AddressComponent.AddressPoco>;
            if (provienceList != null)
            {
                this.cmbProvince.Items.Clear();
                foreach (AddressComponent.AddressPoco ap in provienceList)
                {
                    ComboBoxItem cbiProvience = new ComboBoxItem();
                    cbiProvience.Content     = ap.Name;
                    cbiProvience.DataContext = ap;
                    this.cmbProvince.Items.Add(cbiProvience);
                }
            }
        }
示例#7
0
 public void ShowAddress(string country, string province, string city)
 {
     try
     {
         if ("100000".Equals(country))
         {
             this.cmbCountry.Text = "中国";
         }
         System.Collections.Generic.List <AddressComponent.AddressPoco> provienceList = this.Proviences["100000"] as System.Collections.Generic.List <AddressComponent.AddressPoco>;
         if (provienceList != null)
         {
             AddressComponent.AddressPoco apProvience = null;
             foreach (AddressComponent.AddressPoco ap in provienceList)
             {
                 if (ap.Code.Equals(province))
                 {
                     apProvience = ap;
                 }
             }
             if (apProvience != null)
             {
                 this.cmbProvince.Text = apProvience.Name;
                 System.Collections.Generic.List <AddressComponent.AddressPoco> cityList = this.Citys[province] as System.Collections.Generic.List <AddressComponent.AddressPoco>;
                 AddressComponent.AddressPoco apCity = null;
                 foreach (AddressComponent.AddressPoco ap in cityList)
                 {
                     if (ap.Code.Equals(city))
                     {
                         apCity = ap;
                     }
                 }
                 if (apCity != null)
                 {
                     this.cmbCity.Text = apCity.Name;
                 }
             }
         }
     }
     catch (System.Exception e)
     {
         ServiceUtil.Instance.Logger.Error(e.ToString());
     }
 }
 private void InitAddressData()
 {
     System.Collections.Generic.List<string> list = this.LoadAddressTxt();
     if (list != null)
     {
         char[] reg = new char[]
         {
             '#'
         };
         for (int i = 0; i < list.Count; i++)
         {
             AddressComponent.AddressPoco address = new AddressComponent.AddressPoco();
             string[] s = list[i].Split(reg);
             if (s.Length == 2)
             {
                 address.Code = s[0];
                 address.Name = s[1];
                 char[] values = address.Code.ToCharArray();
                 int countValue = 0;
                 for (int j = 2; j < values.Length; j++)
                 {
                     countValue += int.Parse(values[j].ToString());
                 }
                 if (countValue == 0)
                 {
                     if (!this.Proviences.ContainsKey("100000"))
                     {
                         this.Proviences.Add("100000", new System.Collections.Generic.List<AddressComponent.AddressPoco>());
                     }
                     System.Collections.Generic.List<AddressComponent.AddressPoco> listTemp = this.Proviences["100000"] as System.Collections.Generic.List<AddressComponent.AddressPoco>;
                     listTemp.Add(address);
                 }
                 else
                 {
                     countValue = 0;
                     for (int z = 4; z < values.Length; z++)
                     {
                         countValue += int.Parse(values[z].ToString());
                     }
                     if (countValue == 0)
                     {
                         string provienceCode = this.getProvinceCode(int.Parse(address.Code)).ToString();
                         if (!this.Citys.ContainsKey(provienceCode))
                         {
                             this.Citys.Add(provienceCode, new System.Collections.Generic.List<AddressComponent.AddressPoco>());
                         }
                         System.Collections.Generic.List<AddressComponent.AddressPoco> cityList = this.Citys[provienceCode] as System.Collections.Generic.List<AddressComponent.AddressPoco>;
                         cityList.Add(address);
                     }
                 }
             }
         }
         System.Console.WriteLine("InitAddressData");
     }
 }