示例#1
0
        private void btFactura_Click(object sender, EventArgs e)
        {
            CrearFactura factura = new CrearFactura();

            factura.Show();
            this.Hide();
        }
示例#2
0
文件: Main.cs 项目: masires/JEWApp
        private void btnFacturaCrear_Click(object sender, EventArgs e)
        {
            CrearFactura formCrearFactura = new CrearFactura();

            showChildForm(formCrearFactura);
        }