Example #1
0
 private void agregarFotoButton_Click(object sender, EventArgs e)
 {
     using (xfAgregarImagenes agregarImagenes = new xfAgregarImagenes())
     {
         agregarImagenes.ShowDialog();
         fotos = agregarImagenes.GetMyResult();
     }
     if (fotos != null)
     {
         label3.Visible = true;
     }
 }
 private void agregarFotosButton_Click(object sender, EventArgs e)
 {
     using (xfAgregarImagenes agreg = new xfAgregarImagenes())
     {
         agreg.ShowDialog();
         fotito = agreg.Fot;
     }
     if (fotito != null)
     {
         label5.Text    = string.Concat("Se eligieron ", fotito.Count, " fotos");
         label5.Visible = true;
     }
 }