Implementación de la clase CapturaImagen, donde se toma una captura de pantalla de la imagen del escaneo, la cual se almacena en carpetas separadas por fecha.

This commit is contained in:
2026-04-30 10:15:33 -06:00
parent 2e45a0562e
commit 490d76dbe3
6 changed files with 195 additions and 30 deletions

View File

@@ -66,6 +66,7 @@
this.sr2000w_ip_lbl = new System.Windows.Forms.Label();
this.version = new System.Windows.Forms.Label();
this.reader_connector = new System.Windows.Forms.Timer(this.components);
this.bttnQA = new System.Windows.Forms.Button();
this.panelTitleBar.SuspendLayout();
this.panelBody.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.blackimg_picbx)).BeginInit();
@@ -166,6 +167,7 @@
// panelBody
//
this.panelBody.BackColor = System.Drawing.Color.WhiteSmoke;
this.panelBody.Controls.Add(this.bttnQA);
this.panelBody.Controls.Add(this.labelRate);
this.panelBody.Controls.Add(this.btnConfiguración);
this.panelBody.Controls.Add(this.barcode_lbl);
@@ -274,7 +276,7 @@
this.btnBD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(119)))), ((int)(((byte)(232)))));
this.btnBD.CausesValidation = false;
this.btnBD.ForeColor = System.Drawing.Color.White;
this.btnBD.Location = new System.Drawing.Point(1001, 609);
this.btnBD.Location = new System.Drawing.Point(956, 609);
this.btnBD.Name = "btnBD";
this.btnBD.Size = new System.Drawing.Size(44, 58);
this.btnBD.TabIndex = 107;
@@ -434,7 +436,7 @@
this.DataText.Multiline = true;
this.DataText.Name = "DataText";
this.DataText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.DataText.Size = new System.Drawing.Size(983, 58);
this.DataText.Size = new System.Drawing.Size(938, 58);
this.DataText.TabIndex = 91;
//
// TgrBtn
@@ -531,7 +533,7 @@
this.version.Name = "version";
this.version.Size = new System.Drawing.Size(64, 21);
this.version.TabIndex = 87;
this.version.Text = "5.1";
this.version.Text = "5.0.2";
this.version.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// reader_connector
@@ -540,6 +542,20 @@
this.reader_connector.Interval = 5000;
this.reader_connector.Tick += new System.EventHandler(this.reader_connector_Tick);
//
// bttnQA
//
this.bttnQA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.bttnQA.BackColor = System.Drawing.Color.Maroon;
this.bttnQA.CausesValidation = false;
this.bttnQA.ForeColor = System.Drawing.Color.White;
this.bttnQA.Location = new System.Drawing.Point(1003, 609);
this.bttnQA.Name = "bttnQA";
this.bttnQA.Size = new System.Drawing.Size(44, 58);
this.bttnQA.TabIndex = 114;
this.bttnQA.Text = "QA";
this.bttnQA.UseVisualStyleBackColor = false;
this.bttnQA.Click += new System.EventHandler(this.bttnQA_Click_1);
//
// Principal
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -605,5 +621,6 @@
private System.Windows.Forms.Button btnConfiguración;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label labelRate;
private System.Windows.Forms.Button bttnQA;
}
}