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

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

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;         
            }       
        }



相关文章
|
3月前
|
JavaScript
element-ui table表格多选后再打开默认选中
element-ui table表格多选后再打开默认选中
el-menu导航报错Missing required prop: "index"、点击只有一级菜单时不合上其他已展开菜单
el-menu导航报错Missing required prop: "index"、点击只有一级菜单时不合上其他已展开菜单
292 0
|
前端开发 索引
PythonGUI编程(3) ---- Options选项 Entry单行文本框 Text多行文本框
PythonGUI编程(3) ---- Options选项 Entry单行文本框 Text多行文本框
224 0
PythonGUI编程(3) ---- Options选项 Entry单行文本框 Text多行文本框
|
JavaScript
【mpvue】radio-group 标签组设置默认选择checked: 'true',选择了单选按钮的非默认选项,再点击其他的选择,单选按钮又会变成默认的选项
1、问题举例描述: radio-group 标签组设置默认选择checked: ‘true’,选择了单选按钮的非默认选项(场外),再点击其他的选择(手续费率),单选按钮又会变成默认的选项(场内) 默认状态如下:
548 0
【mpvue】radio-group 标签组设置默认选择checked: 'true',选择了单选按钮的非默认选项,再点击其他的选择,单选按钮又会变成默认的选项
Button 使用Command 按钮置灰未更新
原文:Button 使用Command 按钮置灰未更新 当Button绑定了Command,按钮在窗口弹出、或者其它事件时,会自动置灰. 有时,异步执行时间较长时,界面一些绑定了命令的Button,State不会变化,会一直置灰。
1080 0
|
容器 开发者
Ext6使用tabPanel关闭tab再打开报错的解决
使用chrom浏览器的开发者工具的console追溯报错信息如下: Uncaught Error:Cannot add destroyed item 'panel-1043' to Container 'centertab-1021'
1522 0