C#comboBox实现三级联动

版权声明:转载原创文章请以超链接形式请注明原文章出处,尊重作者,尊重原创!


恰饭广告




实现效果:

comboBox三级联动效果

Form1.cs代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Collections;
namespace Select
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Hashtable province = new Hashtable();
        Hashtable city = new Hashtable();
        private void Province()
        {
            province.Add("云南省",new string[] {"昆明市","玉溪市" });
            province.Add("四川省", new string[] { "成都市", "绵阳市" });
            city.Add("昆明市",new string[] {"盘龙区","五华区" });
            city.Add("玉溪市",new string[] {"红塔区","。。。区" });
            city.Add("成都市", new string[] { "。。。区", "。。。区" });
            city.Add("绵阳市", new string[] { "...区", "...区" });
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            Province();
            foreach (string str in province.Keys)
            {
                comboBox1.Items.Add(str);
            }
            foreach (string str in city.Keys)
            {
                comboBox2.Items.Add(str);
            }
            comboBox1.SelectedIndex=0;
        }
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            string[] citys = province[comboBox1.Text] as string[];
            comboBox2.Items.Clear();
            foreach (string s in citys)
            {
                comboBox2.Items.Add(s);
            }
            comboBox2.SelectedIndex = 0;
        }
        private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
        {
            string[] citys = city[comboBox2.Text] as string[];
            comboBox3.Items.Clear();
            foreach (string str in citys)
            {
                comboBox3.Items.Add(str);
            }
            comboBox3.SelectedIndex = 0;
        }
        private void comboBox3_SelectedIndexChanged(object sender, EventArgs e)
        {
        }
    }
}

GitHub源码下载:

https://github.com/kiritobin/comboBox

原文链接:https://www.idaobin.com/archives/970.html

让我恰个饭吧.ヘ( ̄ω ̄ヘ)

支付宝 ——————- 微信
图片加载中图片加载中



恰饭广告

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注

× 7 = 14