crud de productos completado

This commit is contained in:
carlos
2024-06-19 20:51:46 -06:00
parent 3c34b7fd78
commit 3671014cdc
24 changed files with 425 additions and 24 deletions
+15 -12
View File
@@ -28,7 +28,7 @@
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.btnSubir = new System.Windows.Forms.Button();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.lbImg = new System.Windows.Forms.Label();
@@ -40,16 +40,17 @@
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// button1
// btnSubir
//
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.button1.Location = new System.Drawing.Point(243, 312);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(103, 46);
this.button1.TabIndex = 38;
this.button1.Text = "Subir";
this.button1.UseVisualStyleBackColor = true;
this.btnSubir.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnSubir.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.btnSubir.Location = new System.Drawing.Point(243, 312);
this.btnSubir.Name = "btnSubir";
this.btnSubir.Size = new System.Drawing.Size(103, 46);
this.btnSubir.TabIndex = 38;
this.btnSubir.Text = "Subir";
this.btnSubir.UseVisualStyleBackColor = true;
this.btnSubir.Click += new System.EventHandler(this.button1_Click);
//
// pictureBox2
//
@@ -61,6 +62,7 @@
this.pictureBox2.Size = new System.Drawing.Size(100, 69);
this.pictureBox2.TabIndex = 37;
this.pictureBox2.TabStop = false;
this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
//
// pictureBox1
//
@@ -72,6 +74,7 @@
this.pictureBox1.Size = new System.Drawing.Size(100, 69);
this.pictureBox1.TabIndex = 36;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// lbImg
//
@@ -139,7 +142,7 @@
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(897, 575);
this.ControlBox = false;
this.Controls.Add(this.button1);
this.Controls.Add(this.btnSubir);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.lbImg);
@@ -161,7 +164,7 @@
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button btnSubir;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label lbImg;