C # Control Learning 2: ComboBox

Source: Internet
Author: User
 
 
 
Dictionary <string, string> dictionary = new Dictionary <string, string> (); dictionary. add ("". "a"); dictionary. add ("B", "B"); BindingSource bs = new BindingSource (); bs. dataSource = dictionary; this. comboBox. dataSource = bs; this. comboBox. displayMember = "value"; this. comboBox. valueMember = "key"; this. comboBox. text = "B"; MessageBox. show (this. comboBox. selectedValue. toString (); // B
The ComboBox control is always confusing with several attributes:-> SelectedItem refers to the object of the currently selected item, rather than the text, which is usually used for Get-> SelectedText: indicates the string of the currently selected text in the combo box, it refers to the number of characters selected, not the number of items-> SelectedValue: return the value of the field specified by ValueMember-> Text: return the Text of the selected items, after the ComboBox control is bound to the data source, you can set the Text attribute to find the value of SelectedValue ComboBox to bind the Data source:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.