Descargo Cambios de CARLOS24

This commit is contained in:
Michael Robles
2024-01-24 13:14:21 -07:00
parent ccbdc1d323
commit afd0a40a39
11 changed files with 185 additions and 66 deletions
+109 -2
View File
@@ -28,12 +28,119 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.button1 = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(329, 93);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(178, 16);
this.label1.TabIndex = 0;
this.label1.Text = "Selector de fecha con el filtro";
//
// dateTimePicker1
//
this.dateTimePicker1.Location = new System.Drawing.Point(323, 122);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(200, 22);
this.dateTimePicker1.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(547, 122);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(147, 23);
this.button1.TabIndex = 2;
this.button1.Text = "Buscar";
this.button1.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(220, 175);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(728, 138);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "groupBox1";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(215, 64);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(226, 16);
this.label2.TabIndex = 4;
this.label2.Text = "Aquí mostrar las ventas del dia fijado";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(1101, 129);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(178, 16);
this.label3.TabIndex = 5;
this.label3.Text = "Producto que mas se vendio";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(1101, 221);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(157, 16);
this.label4.TabIndex = 6;
this.label4.Text = "Persona que mas vendió";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(1101, 318);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(164, 16);
this.label5.TabIndex = 7;
this.label5.Text = "Promedio de ventas al dia";
this.label5.Click += new System.EventHandler(this.label5_Click);
//
// Estadiscticas
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.ClientSize = new System.Drawing.Size(1397, 730);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.button1);
this.Controls.Add(this.dateTimePicker1);
this.Controls.Add(this.label1);
this.Name = "Estadiscticas";
this.Text = "Estadiscticas";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
}
}