SelectedValue可能是最好使用的值 SelectedText将为您提供可编辑部分的选定文本,Selected Item将返回对象,Selected index将返回索引。通常对于应用程序,SelectedValue将被提取并使用。查看Combobox from MSDN
SelectedIndex Gets or sets the index specifying the currently selected item. (Overrides ListControl.SelectedIndex.)
SelectedItem Gets or sets currently selected item in the ComboBox.
SelectedText Gets or sets the text that is selected in the editable portion of a ComboBox.
SelectedValue Gets or sets the value of the member property specified by the ValueMember property. (Inherited from ListControl.)
5条答案
按热度按时间hpcdzsge1#
SelectedValue可能是最好使用的值
SelectedText将为您提供可编辑部分的选定文本,Selected Item将返回对象,Selected index将返回索引。通常对于应用程序,SelectedValue将被提取并使用。查看Combobox from MSDN
h7wcgrx32#
Text
可能是最好的一个。它从ComboBox中获取当前选定的文本作为字符串。对于此样式,您无法从
ComboBox
取得文字。这会从目前SelectedIndex
的项目传回字串。rkttyhzu3#
它取决于三个因素1.模式2.下拉式样式3.必需值
在组合框上.已更改选定索引
a.下拉式样式=下拉式
B.下拉列表样式=下拉列表
a.下拉式样式=下拉式
B.下拉列表样式=下拉列表
注意:您也可以使用.Text,它将返回=组合框的文本
结论:
a.需要ValueMember
B.显示成员是必需的
oipij1gg4#
Microsoft建议使用此值
20jt8wwn5#
我有这样的代码:
......它和一台NRE一起坠毁。
将其更改为以下内容后:
......工作正常。