This repository has been archived on 2024-08-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Final_OOP/Vista/PantallaPrincipal.cs

105 lines
2.8 KiB
C#

namespace Vista
{
public partial class PantallaPrincipal : Form
{
public PantallaPrincipal()
{
InitializeComponent();
}
private void clientesToolStripMenuItem_Click(object sender, EventArgs e)
{
// Cerrar el formulario secundario actual si hay alguno
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmClientes();
Frm.MdiParent = this;
Frm.Show();
}
private void ventasToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmFacturas();
Frm.MdiParent = this;
Frm.Show();
}
private void proveedoresToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmProveedores();
Frm.MdiParent = this;
Frm.Show();
}
private void productosToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmProductos();
Frm.MdiParent = this;
Frm.Show();
}
private void remitosToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmRemitos();
Frm.MdiParent = this;
Frm.Show();
}
private void ordenDeCompraToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmOrdenDeCompra();
Frm.MdiParent = this;
Frm.Show();
}
private void pedidosPresupuestoToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmPresupuestos();
Frm.MdiParent = this;
Frm.Show();
}
private void gestionarToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void informesToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmInforme();
Frm.MdiParent = this;
Frm.Show();
}
}
}