首页 > 其他 > 详细

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

时间:2015-02-06 14:34:49      阅读:176      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!