private-->public 
 试一下

解决方案 »

  1.   

    问题已解决
    private   void   Form9_Load(object   sender,   EventArgs   e) 
                    { 
                            //   TODO:   这行代码将数据加载到表“cX_1DataSet5.sattf”中。您可以根据需要移动或移除它。 
                            this.sattfTableAdapter1.Fill(this.cX_1DataSet5.sattf); 
                          textBox1.Text   =   this.comboBox1.SelectedValue.ToString(); 
                      } 
                  
      private   void   comboBox1_SelectedIndexChanged(object   sender,   EventArgs   e) 
                    {       string x = Convert.ToString(this.comboBox1.SelectedValue);();                                  
                            textBox1.Text  =  x;
                    } 
        private   void   button1_Click(object   sender,   EventArgs   e) 
                    { 
                          this.Close(); 
                    } 
    不知道为什么会这样
      

  2.   


    this.comboBox1.SelectedValue.toString();
      

  3.   

    应该是xnceo 说的那种原因
    但是为什么会没有值啊?
    怎么才让comoBox1有值呢?