From 513e0603095bc837418d07af58df814ade403b55 Mon Sep 17 00:00:00 2001 From: fedpo Date: Mon, 5 Aug 2024 20:34:15 +0100 Subject: [PATCH] =?UTF-8?q?a=C3=B1adido=20skeleton=20de=20los=20form=20ord?= =?UTF-8?q?endecompra=20y=20remito?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ner.cs => FrmOrdenesDeCompras.Designer.cs} | 0 ...rdenDeCompra.cs => FrmOrdenesDeCompras.cs} | 0 ...DeCompra.resx => FrmOrdenesDeCompras.resx} | 0 Vista/OrdenDeCompra.Designer.cs | 39 ++++++ Vista/OrdenDeCompra.cs | 20 +++ Vista/OrdenDeCompra.resx | 120 ++++++++++++++++++ Vista/PantallaPrincipal.cs | 2 +- Vista/Remito.Designer.cs | 39 ++++++ Vista/Remito.cs | 20 +++ Vista/Remito.resx | 120 ++++++++++++++++++ Vista/Vista.csproj.user | 8 +- 11 files changed, 366 insertions(+), 2 deletions(-) rename Vista/{FrmOrdenDeCompra.Designer.cs => FrmOrdenesDeCompras.Designer.cs} (100%) rename Vista/{FrmOrdenDeCompra.cs => FrmOrdenesDeCompras.cs} (100%) rename Vista/{FrmOrdenDeCompra.resx => FrmOrdenesDeCompras.resx} (100%) create mode 100644 Vista/OrdenDeCompra.Designer.cs create mode 100644 Vista/OrdenDeCompra.cs create mode 100644 Vista/OrdenDeCompra.resx create mode 100644 Vista/Remito.Designer.cs create mode 100644 Vista/Remito.cs create mode 100644 Vista/Remito.resx diff --git a/Vista/FrmOrdenDeCompra.Designer.cs b/Vista/FrmOrdenesDeCompras.Designer.cs similarity index 100% rename from Vista/FrmOrdenDeCompra.Designer.cs rename to Vista/FrmOrdenesDeCompras.Designer.cs diff --git a/Vista/FrmOrdenDeCompra.cs b/Vista/FrmOrdenesDeCompras.cs similarity index 100% rename from Vista/FrmOrdenDeCompra.cs rename to Vista/FrmOrdenesDeCompras.cs diff --git a/Vista/FrmOrdenDeCompra.resx b/Vista/FrmOrdenesDeCompras.resx similarity index 100% rename from Vista/FrmOrdenDeCompra.resx rename to Vista/FrmOrdenesDeCompras.resx diff --git a/Vista/OrdenDeCompra.Designer.cs b/Vista/OrdenDeCompra.Designer.cs new file mode 100644 index 0000000..7919e38 --- /dev/null +++ b/Vista/OrdenDeCompra.Designer.cs @@ -0,0 +1,39 @@ +namespace Vista +{ + partial class OrdenDeCompra + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "OrdenDeCompra"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Vista/OrdenDeCompra.cs b/Vista/OrdenDeCompra.cs new file mode 100644 index 0000000..340bbc8 --- /dev/null +++ b/Vista/OrdenDeCompra.cs @@ -0,0 +1,20 @@ +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 OrdenDeCompra : Form + { + public OrdenDeCompra() + { + InitializeComponent(); + } + } +} diff --git a/Vista/OrdenDeCompra.resx b/Vista/OrdenDeCompra.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Vista/OrdenDeCompra.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Vista/PantallaPrincipal.cs b/Vista/PantallaPrincipal.cs index 0d4ffcb..0f64e9d 100644 --- a/Vista/PantallaPrincipal.cs +++ b/Vista/PantallaPrincipal.cs @@ -70,7 +70,7 @@ namespace Vista { ActiveMdiChild.Close(); } - var Frm = new FrmOrdenDeCompra(); + var Frm = new FrmOrdenesDeCompras(); Frm.MdiParent = this; Frm.Show(); } diff --git a/Vista/Remito.Designer.cs b/Vista/Remito.Designer.cs new file mode 100644 index 0000000..7c6a81c --- /dev/null +++ b/Vista/Remito.Designer.cs @@ -0,0 +1,39 @@ +namespace Vista +{ + partial class Remito + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Remito"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Vista/Remito.cs b/Vista/Remito.cs new file mode 100644 index 0000000..fc7f2a8 --- /dev/null +++ b/Vista/Remito.cs @@ -0,0 +1,20 @@ +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 Remito : Form + { + public Remito() + { + InitializeComponent(); + } + } +} diff --git a/Vista/Remito.resx b/Vista/Remito.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Vista/Remito.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Vista/Vista.csproj.user b/Vista/Vista.csproj.user index 1ac9e07..1f7e571 100644 --- a/Vista/Vista.csproj.user +++ b/Vista/Vista.csproj.user @@ -23,7 +23,7 @@ Form - + Form @@ -47,8 +47,14 @@ Form + + Form + Form + + Form + \ No newline at end of file