码迷,mamicode.com
首页 > 其他好文 > 详细

动态绑定下拉框

时间:2017-08-13 20:07:58      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:bsp   .sh   name   get   tostring   orm   sql   .text   绑定   

//动态绑定下拉框
            string sql = "select id ,name form B ";
            DataTable dt = DBHelper.GetDataTable(sql);
            //绑定数据源
            this.comboBox1.DataSource = dt;
            //绑定要显示的文本的字段
            this.comboBox1.DisplayMember = "name";
            //绑定真实的值value
            this.comboBox1.valueMember = "id";
           
            //弹出下拉框的值或文本

            string name = this.comboBox1.Text;
            string id = this.comboBox1.SelectdValue.ToString();
            MessageBox.Show(name);

动态绑定下拉框

标签:bsp   .sh   name   get   tostring   orm   sql   .text   绑定   

原文地址:http://www.cnblogs.com/zeng-qh/p/7354453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!