在下初学者,请给予代码?

解决方案 »

  1.   

     this .textBox1 .Text =this .comboBox1 .Items [0].ToString ();//0代表第一个元素,依次类推
      

  2.   

    if (this .comboBox1 .SelectedItem !=null )
                this.textBox1.Text = this.comboBox1.SelectedItem.ToString();
    如果你是从这个comboBox1中选择话,可以这样。。
      

  3.   

    2楼 3楼都对
    看你是想怎么样了
    3楼是获取combox选择的值