using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Sistema_de_Almacen
{
public partial class FrmMenu : Form
{
public FrmMenu()
{
InitializeComponent();
}
private void cambiarDeUsuarioToolStripMenuItem_Click(object sender, EventArgs e)
{
FrmAcceso login = new FrmAcceso();
login.Show();
this.Close();
}
private void registroDeInsumoToolStripMenuItem_Click(object sender, EventArgs e)
{
FrmRegInsumo insumo = new FrmRegInsumo();
insumo.Show();
insumo.MdiParent = this;
this.StartPosition = FormStartPosition.CenterScreen;
}
private void salirToolStripMenuItem_Click(object sender, EventArgs e)
{
FrmAcceso login = new FrmAcceso();
login.Close();
this.Close();
}
private void registroDeMateriaPrimaToolStripMenuItem_Click(object sender, EventArgs e)
{
frmRegMatPrima materia = new frmRegMatPrima();
materia.Show();
materia.MdiParent = this;
this.StartPosition = FormStartPosition.CenterScreen;
}