comboBox3.SelectedText;
comboBox3.SelectedValue;
comboBox3.SelectedItem

解决方案 »

  1.   

    comboBox3.SelectedText;选中的文本,是在EDITBOX里面的
    comboBox3.SelectedItem;选中的项目,一般在下拉列表里面选出来的
      

  2.   

    comboBox3.SelectedValue;//SelectedValue returns the results of the ToString method of the object
      

  3.   

    comboBox3.SelectedText;--选择的项的text
    comboBox3.SelectedValue;--选择的项的value
    comboBox3.SelectedItem--选择的项
      

  4.   

    comboBox3.SelectedItem.Text 等于 comboBox3.SelectedText
    comboBox3.SelectedText.Value 等于 comboBox3.SelectedValue
      

  5.   

    comboBox3.SelectedText; //是显示在控件里的值,字符串类型 
    comboBox3.SelectedValue;//可以保存项的对应的键值。
    comboBox3.SelectedItem   //选中的项是一个对象集合包含了VALUE和Text
      

  6.   

    comboBox3.SelectedText;选中的text值
    comboBox3.SelectedValue;选中的text对应的一上value
    comboBox3.SelectedItem;选中的项