本文介绍了ComboBox.SelectedText不给我的SelectedText的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我建立一个字符串,代码看起来像

 字符串状态=我的组合框的状态为+ comboBoxTest .SelectedText 

我使用的WinForm在VS2010



结果看起来像



解决方案

I think you want to use

String status = "The status of my combobox is " + comboBoxTest.Text

SelectedText property from MSDN

while Text property from MSDN

这篇关于ComboBox.SelectedText不给我的SelectedText的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 11:34