文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C# comboBox实现省市两级联动(winform)

C# comboBox实现省市两级联动(winform)

时间:2011-05-26  来源:诗闵

新建一个win form应用程序,拖两comboBox控件。数据库见前一篇文章。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace 省市
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            using (SqlConnection conn = new SqlConnection("server=.;database=DBPromary;user id=sa;password=123456"))
            {
                conn.Open();

                using (SqlCommand cmd = conn.CreateCommand())
                {
                    cmd.CommandText = "select proName from promary";

                    using (SqlDataReader reader = cmd.ExecuteReader())
                    {

                        while (reader.Read())
                        {
                            string name = reader.GetString(reader.GetOrdinal("proName"));
                           
                            cb1.Items.Add(name);
                        }
                    }
                }
            }

        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            cb2.Items.Clear();
            using (SqlConnection conn = new SqlConnection("server=.;database=DBPromary;user id=sa;password=123456"))
            {
                conn.Open();

                using (SqlCommand cmd = conn.CreateCommand())
                {
                    cmd.CommandText = "select cityName from city,promary where city.proID=promary.proID and promary.proName=@pname";
                    cmd.Parameters.Add(new SqlParameter("pname",cb1.SelectedItem));

                    using (SqlDataReader reader = cmd.ExecuteReader())
                    {

                        while (reader.Read())
                        {
                            string name = reader.GetString(reader.GetOrdinal("cityName"));

                            cb2.Items.Add(name);
                        }
                    }
                }
            }

        }
           
           
        }
    }

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载