crud de variante en proceso

This commit is contained in:
Carlos Sandoval
2024-06-20 19:35:46 -06:00
parent 3671014cdc
commit ff714ef848
18 changed files with 354 additions and 71 deletions
+30 -2
View File
@@ -28,13 +28,38 @@
/// </summary>
private void InitializeComponent()
{
this.VariantePanel = new System.Windows.Forms.FlowLayoutPanel();
this.btnAgregar = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// VariantePanel
//
this.VariantePanel.AutoScroll = true;
this.VariantePanel.BackColor = System.Drawing.SystemColors.Control;
this.VariantePanel.Location = new System.Drawing.Point(13, 59);
this.VariantePanel.Name = "VariantePanel";
this.VariantePanel.Size = new System.Drawing.Size(1146, 516);
this.VariantePanel.TabIndex = 16;
//
// btnAgregar
//
this.btnAgregar.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAgregar.Location = new System.Drawing.Point(543, 12);
this.btnAgregar.Name = "btnAgregar";
this.btnAgregar.Size = new System.Drawing.Size(94, 40);
this.btnAgregar.TabIndex = 17;
this.btnAgregar.Text = "Agregar";
this.btnAgregar.UseVisualStyleBackColor = true;
this.btnAgregar.Click += new System.EventHandler(this.btnAgregar_Click);
//
// Variantes
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 697);
this.ClientSize = new System.Drawing.Size(1171, 587);
this.Controls.Add(this.btnAgregar);
this.Controls.Add(this.VariantePanel);
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Name = "Variantes";
this.Text = "Variantes";
this.Load += new System.EventHandler(this.Variantes_Load);
@@ -43,5 +68,8 @@
}
#endregion
private System.Windows.Forms.FlowLayoutPanel VariantePanel;
private System.Windows.Forms.Button btnAgregar;
}
}