rehecho el form pedidosorden

This commit is contained in:
fedpo
2024-08-04 22:26:19 +01:00
committed by fede
parent f023ce3b2d
commit 77dc57dda2
6 changed files with 232 additions and 194 deletions

View File

@@ -1,37 +0,0 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Vista
{
public partial class FrmPresupuesto : Form
{
public FrmPresupuesto()
{
InitializeComponent();
}
private void button3_Click(object sender, EventArgs e)
{
var form = new AddProducto();
form.ShowDialog();
}
private void button2_Click(object sender, EventArgs e)
{
Close();
}
private void button1_Click(object sender, EventArgs e)
{
//guardar
Close();
}
}
}