2011-10-24 46 views
1

我有兩個組合框comboBox1 & comboBox2。我會改變一些屬性comboBox1 & comboBox2取決於comboBox1SelectedItem。我在Form1_Load塊中寫下了以下代碼:根據另一個組合框操縱combBox屬性

private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) { 

    if(this->comboBox1->SelectedItem=="Letters"){  

     this->comboBox1->Size=System::Drawing::Size(238,27); 
     this->comboBox1->Location=System::Drawing::Point(301,73); 
     this->comboBox2->Visible= true; 

} 
else{ 
     this->comboBox1->Size=System::Drawing::Size(473,27); 
     this->comboBox2->Visible= false; 
    } 
} 

但它不起作用!

+0

你確定代碼進入Form1_Load嗎? – r3st0r3

+0

它在Form1_Load中,可以在我的問題中看到。 – Aan

+1

我的意思是,代碼應該在Form1_Load事件中?我認爲它應該在comboBox1的SelectedIndexChanged事件下。 – r3st0r3

回答

3

是代碼應該在Form1_Load事件?我認爲它應該在comboBox1的SelectedIndexChanged事件下。

相關問題