Inheritance: MetroFramework.Forms.MetroForm
Example #1
0
 private void btnAdd_Click(object sender, EventArgs e)
 {
     using (FormMunicipio f = new FormMunicipio())
     {
         if (f.ShowDialog() == DialogResult.OK)
             this.RefreshMunicipiosDefinidos();
     }
 }
Example #2
0
 private void btnAdd_Click(object sender, EventArgs e)
 {
     using (FormMunicipio f = new FormMunicipio())
     {
         if (f.ShowDialog() == DialogResult.OK)
         {
             this.RefreshMunicipiosDefinidos();
         }
     }
 }