Beispiel #1
0
 public frmEditor(frmImagenes f = null, Image i = null)
 {
     InitializeComponent();
     form    = f;
     Antes   = (Bitmap)i;
     Despues = (Bitmap)Tools.ResizeImage(Antes, 640);
 }
        private void btnImagenes_Click(object sender, EventArgs e)
        {
            frmImagenes frm = new frmImagenes(this, txtId.Text);

            Main.ConfigurarBotones(frm);
            frm.Show();
            frm.Focus();
        }