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
PolidoroFederico2am 51676e6434 feat: Cambios Varios (mirar Desc)
- Añadidas referencias faltantes
- Arreglado FormProveedores
- Empiezo el codeo del Form Facturas
2024-04-26 19:52:29 +01:00

89 lines
2.4 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 FrmPedidosDePresupuestos();
Frm.MdiParent = this;
Frm.Show();
}
}
}