Exemple #1
0
 // PRE:
 // POS: muestra en el formulario un control de usuario de tipo "SegundaMano"
 private void rbSegundaMano_CheckedChanged(object sender, EventArgs e)
 {
     if (rbSegundaMano.Checked && !accion.Equals("Búsqueda"))
     {
         nuevo.Hide();
         segundaMano          = new SegundaMano();
         segundaMano.Location = new Point(390, 151);
         segundaMano.Show();
         Controls.Add(segundaMano);
     }
 }
Exemple #2
0
 // PRE:
 // POS: se rellenan los controles con los datos del vehiculo que ocupe la siguiente posicion
 private void bindingNavigatorMoveNextItem_Click(object sender, EventArgs e)
 {
     segundaMano.Hide();
     nuevo.Hide();
     rellenarDatos(int.Parse(bindingNavigatorPositionItem.Text) - 1, vehiculos);
 }