Files
Final_Das/Vista/PantallaPrincipal.cs
fede 11bd93e016 feat: Cambios Varios (mirar Desc)
- Añadidas referencias faltantes
- Arreglado FormProveedores
- Empiezo el codeo del Form Facturas
2024-08-11 18:20:59 -03: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();
}
}
}