- private: System::Void CrearRadioButtons (System::Void){ 
-      System::Windows::Forms::RadioButton^ _b; 
-      _b = gcnew RadioButton(); 
-      _b->Checked = true; 
-      this->Controls->Add(_b); 
-      _b = gcnew RadioButton(); 
-      _b->Checked = false; 
-      this->Controls->Add(_b); 
- } 
-   
- private: System::Void radioButton1_CheckedChanged(System::Object^  sender, System::EventArgs^  e) { 
-      label1->Text = "1"; 
-        } 
- private: System::Void radioButton2_CheckedChanged(System::Object^  sender, System::EventArgs^  e) { 
-      label1->Text = "2"; 
- } 
-