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

dev combobox edit 怎么设置让选项清空

时间:2015-02-06 14:37:50      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

dev combobox edit 怎么设置让选项清空

功能需求:

点击combobox edit1的选项A 使得 combobox edit2出现选项a;

然后再点击combobox edit1的选项B 使得combobox edit2出现选项b。

代码如下:

 

//清空客户、料号、物料编码
        private void cbCustomersShort_EditValueChanged(object sender, EventArgs e)
        {            
            if(this.cbCustomers.Text != null )
            {
                cbCustomers.EditValue = null;
                cbCustomers.Properties.Items.Clear();
            }
            if (this.cbObjectID != null)
            {
                cbObjectID.EditValue = null;
                cbObjectID.Properties.Items.Clear();
            }
            if (this.txtCoding != null)
            {
                txtCoding.EditValue = null;         
            }       
        }

 

dev combobox edit 怎么设置让选项清空

标签:

原文地址:http://www.cnblogs.com/tirmer/p/4277040.html

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