- Added QRValidation vision control system - Includes CapCleaningControl UI components - WebSocket-based barcode validation system - Support for Crevis PLC integration - Test projects for PLC emulator, motion, IO panel, and Modbus 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
97 lines
4.0 KiB
C#
97 lines
4.0 KiB
C#
namespace Project
|
|
{
|
|
partial class fviewer
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fviewer));
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.sbConnState = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.piv = new System.Windows.Forms.Panel();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.sbConnState});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 625);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 12, 0);
|
|
this.statusStrip1.Size = new System.Drawing.Size(854, 24);
|
|
this.statusStrip1.TabIndex = 4;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// sbConnState
|
|
//
|
|
this.sbConnState.Font = new System.Drawing.Font("맑은 고딕", 10F);
|
|
this.sbConnState.Name = "sbConnState";
|
|
this.sbConnState.Size = new System.Drawing.Size(23, 19);
|
|
this.sbConnState.Text = "●";
|
|
//
|
|
// piv
|
|
//
|
|
this.piv.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.piv.Location = new System.Drawing.Point(0, 0);
|
|
this.piv.Name = "piv";
|
|
this.piv.Size = new System.Drawing.Size(854, 625);
|
|
this.piv.TabIndex = 6;
|
|
this.piv.MouseClick += new System.Windows.Forms.MouseEventHandler(this.piv_MouseClick);
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// fviewer
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(854, 649);
|
|
this.Controls.Add(this.piv);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.KeyPreview = true;
|
|
this.Name = "fviewer";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Image viewer";
|
|
this.Load += new System.EventHandler(this.fTeach_Load);
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.Panel piv;
|
|
private System.Windows.Forms.Timer timer1;
|
|
private System.Windows.Forms.ToolStripStatusLabel sbConnState;
|
|
}
|
|
} |