本文介绍了如何在运行时从带绑定的组合框中获取选定的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好

我在程序中有一个组合框,我用选择查询绑定了组合框

hello
i have a combobox in program and i binded combobox with select query

combogroup.DataSource = CNRL.ShowGroup();
combogroup.DisplayMember = "TitleGroup";
combogroup.ValueMember = "GroupID";



当我从组合中选择项目时,请参阅组合文本中的所选项目


when i select item from combo cant see selected item in combo text

combogroup.text = combogroup.selecteditem.tostring();

推荐答案



这篇关于如何在运行时从带绑定的组合框中获取选定的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 14:36