91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中comboBox實現三級聯動

發布時間:2020-09-24 15:07:41 來源:腳本之家 閱讀:244 作者:彬菌 欄目:編程語言

實現效果:

C#中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)
 {

 }
 }
}

更多相關的實現方法大家可以閱讀下面的相關內容,感謝大家對億速云的支持。

本文轉載于:https://www.idaobin.com/archives/970.html

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滦南县| 竹溪县| 博野县| 晋城| 汶上县| 新巴尔虎左旗| 南丹县| 昌乐县| 定陶县| 饶河县| 凤庆县| 遂川县| 礼泉县| 正镶白旗| 垫江县| 左云县| 宜阳县| 凤冈县| 库尔勒市| 砀山县| 山东省| 江陵县| 河南省| 霍山县| 蚌埠市| 宁海县| 湖州市| 搜索| 当雄县| 德安县| 曲周县| 元谋县| 兴宁市| 微博| 新郑市| 个旧市| 新安县| 朝阳区| 常州市| 增城市| 嘉义县|