c# combox與hashtable_arraylist填充資料來源與下拉選單框示例

wisdomone1發表於2012-04-17
private void Form1_Load(object sender, EventArgs e)
        {
            ArrayList al = new ArrayList(3);
            al.AddRange(new string[] { "存款","貸款","外匯"});
            comboBox1.DataSource = al;


            ArrayList a2 = new ArrayList(2);
            Hashtable ht = new Hashtable();
            ht.Add("1","翟勳楊");
            ht.Add("2","翟勳章");
            foreach (DictionaryEntry entry in ht) //鍵值對透過dictionaryentry把hashtable
            //新增到arraylist
            
                a2.Add(entry);
            comboBox2.DataSource = a2;
            label1.Text = comboBox2.Items.Count.ToString();
            comboBox2.ValueMember = "Key";
            comboBox2.DisplayMember = "Value";
          
        }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-721446/,如需轉載,請註明出處,否則將追究法律責任。

相關文章