Files
JoyD/Windows/CS/Framework4.0/XCamera/Test/Form1.Designer.cs

316 lines
16 KiB
C#
Raw Normal View History

2026-03-16 17:05:54 +08:00
namespace Test
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.LedImage = new System.Windows.Forms.PictureBox();
this.btnInitialize = new System.Windows.Forms.Button();
this.btnSetConfigFile = new System.Windows.Forms.Button();
this.btnStartCamera = new System.Windows.Forms.Button();
this.btnStartCapture = new System.Windows.Forms.Button();
this.btnDetectLeds = new System.Windows.Forms.Button();
this.btnGetLedStatuses = new System.Windows.Forms.Button();
this.btnShowRegionEditor = new System.Windows.Forms.Button();
this.btnShutdown = new System.Windows.Forms.Button();
this.btnStopCapture = new System.Windows.Forms.Button();
this.btnStopCamera = new System.Windows.Forms.Button();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
2026-03-17 09:21:09 +08:00
this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
2026-03-16 17:05:54 +08:00
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtLog = new System.Windows.Forms.TextBox();
2026-03-17 14:28:07 +08:00
this.lblIpAddress = new System.Windows.Forms.Label();
this.txtIpAddress = new System.Windows.Forms.TextBox();
this.btnSetIP = new System.Windows.Forms.Button();
2026-03-18 08:58:39 +08:00
this.camera = new System.Windows.Forms.PictureBox();
2026-03-16 17:05:54 +08:00
((System.ComponentModel.ISupportInitialize)(this.LedImage)).BeginInit();
this.statusStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
2026-03-18 08:58:39 +08:00
((System.ComponentModel.ISupportInitialize)(this.camera)).BeginInit();
2026-03-16 17:05:54 +08:00
this.SuspendLayout();
//
// LedImage
//
this.LedImage.BackColor = System.Drawing.SystemColors.ControlDark;
this.LedImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
2026-03-18 08:58:39 +08:00
this.LedImage.Location = new System.Drawing.Point(16, 15);
this.LedImage.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.LedImage.Name = "LedImage";
2026-03-18 08:58:39 +08:00
this.LedImage.Size = new System.Drawing.Size(742, 532);
2026-03-16 17:05:54 +08:00
this.LedImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.LedImage.TabIndex = 0;
this.LedImage.TabStop = false;
//
// btnInitialize
//
2026-03-18 08:58:39 +08:00
this.btnInitialize.Location = new System.Drawing.Point(811, 48);
this.btnInitialize.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnInitialize.Name = "btnInitialize";
2026-03-18 08:58:39 +08:00
this.btnInitialize.Size = new System.Drawing.Size(148, 39);
2026-03-16 17:05:54 +08:00
this.btnInitialize.TabIndex = 1;
this.btnInitialize.Text = "1. 初始化";
this.btnInitialize.UseVisualStyleBackColor = true;
this.btnInitialize.Click += new System.EventHandler(this.btnInitialize_Click);
//
// btnSetConfigFile
//
2026-03-18 08:58:39 +08:00
this.btnSetConfigFile.Location = new System.Drawing.Point(811, 111);
this.btnSetConfigFile.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnSetConfigFile.Name = "btnSetConfigFile";
2026-03-18 08:58:39 +08:00
this.btnSetConfigFile.Size = new System.Drawing.Size(148, 39);
2026-03-16 17:05:54 +08:00
this.btnSetConfigFile.TabIndex = 2;
this.btnSetConfigFile.Text = "2. 设置配置文件";
this.btnSetConfigFile.UseVisualStyleBackColor = true;
this.btnSetConfigFile.Click += new System.EventHandler(this.btnSetConfigFile_Click);
//
// btnStartCamera
//
2026-03-18 08:58:39 +08:00
this.btnStartCamera.Location = new System.Drawing.Point(811, 221);
this.btnStartCamera.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnStartCamera.Name = "btnStartCamera";
2026-03-18 08:58:39 +08:00
this.btnStartCamera.Size = new System.Drawing.Size(148, 39);
2026-03-17 14:28:07 +08:00
this.btnStartCamera.TabIndex = 6;
this.btnStartCamera.Text = "4. 启动摄像头";
2026-03-16 17:05:54 +08:00
this.btnStartCamera.UseVisualStyleBackColor = true;
this.btnStartCamera.Click += new System.EventHandler(this.btnStartCamera_Click);
//
// btnStartCapture
//
2026-03-18 08:58:39 +08:00
this.btnStartCapture.Location = new System.Drawing.Point(811, 285);
this.btnStartCapture.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnStartCapture.Name = "btnStartCapture";
2026-03-18 08:58:39 +08:00
this.btnStartCapture.Size = new System.Drawing.Size(148, 39);
2026-03-17 14:28:07 +08:00
this.btnStartCapture.TabIndex = 7;
this.btnStartCapture.Text = "5. 开始捕获";
2026-03-16 17:05:54 +08:00
this.btnStartCapture.UseVisualStyleBackColor = true;
this.btnStartCapture.Click += new System.EventHandler(this.btnStartCapture_Click);
//
// btnDetectLeds
//
2026-03-18 08:58:39 +08:00
this.btnDetectLeds.Location = new System.Drawing.Point(811, 349);
this.btnDetectLeds.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnDetectLeds.Name = "btnDetectLeds";
2026-03-18 08:58:39 +08:00
this.btnDetectLeds.Size = new System.Drawing.Size(148, 39);
2026-03-17 14:28:07 +08:00
this.btnDetectLeds.TabIndex = 8;
this.btnDetectLeds.Text = "6. LED识别";
2026-03-16 17:05:54 +08:00
this.btnDetectLeds.UseVisualStyleBackColor = true;
this.btnDetectLeds.Click += new System.EventHandler(this.btnDetectLeds_Click);
//
// btnGetLedStatuses
//
2026-03-18 08:58:39 +08:00
this.btnGetLedStatuses.Location = new System.Drawing.Point(811, 412);
this.btnGetLedStatuses.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnGetLedStatuses.Name = "btnGetLedStatuses";
2026-03-18 08:58:39 +08:00
this.btnGetLedStatuses.Size = new System.Drawing.Size(148, 39);
2026-03-17 14:28:07 +08:00
this.btnGetLedStatuses.TabIndex = 9;
this.btnGetLedStatuses.Text = "7. 状态查询";
2026-03-16 17:05:54 +08:00
this.btnGetLedStatuses.UseVisualStyleBackColor = true;
this.btnGetLedStatuses.Click += new System.EventHandler(this.btnGetLedStatuses_Click);
//
// btnShowRegionEditor
//
2026-03-18 08:58:39 +08:00
this.btnShowRegionEditor.Location = new System.Drawing.Point(811, 476);
this.btnShowRegionEditor.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnShowRegionEditor.Name = "btnShowRegionEditor";
2026-03-18 08:58:39 +08:00
this.btnShowRegionEditor.Size = new System.Drawing.Size(148, 39);
2026-03-17 14:28:07 +08:00
this.btnShowRegionEditor.TabIndex = 10;
this.btnShowRegionEditor.Text = "8. 区域编辑器";
2026-03-16 17:05:54 +08:00
this.btnShowRegionEditor.UseVisualStyleBackColor = true;
this.btnShowRegionEditor.Click += new System.EventHandler(this.btnShowRegionEditor_Click);
//
// btnShutdown
//
2026-03-18 08:58:39 +08:00
this.btnShutdown.Location = new System.Drawing.Point(811, 540);
this.btnShutdown.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnShutdown.Name = "btnShutdown";
2026-03-18 08:58:39 +08:00
this.btnShutdown.Size = new System.Drawing.Size(148, 39);
2026-03-17 14:28:07 +08:00
this.btnShutdown.TabIndex = 11;
this.btnShutdown.Text = "9. 关闭";
2026-03-16 17:05:54 +08:00
this.btnShutdown.UseVisualStyleBackColor = true;
this.btnShutdown.Click += new System.EventHandler(this.btnShutdown_Click);
//
// btnStopCapture
//
2026-03-18 08:58:39 +08:00
this.btnStopCapture.Location = new System.Drawing.Point(967, 285);
this.btnStopCapture.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnStopCapture.Name = "btnStopCapture";
2026-03-18 08:58:39 +08:00
this.btnStopCapture.Size = new System.Drawing.Size(84, 39);
2026-03-17 14:28:07 +08:00
this.btnStopCapture.TabIndex = 12;
2026-03-16 17:05:54 +08:00
this.btnStopCapture.Text = "停止";
this.btnStopCapture.UseVisualStyleBackColor = true;
this.btnStopCapture.Click += new System.EventHandler(this.btnStopCapture_Click);
//
// btnStopCamera
//
2026-03-18 08:58:39 +08:00
this.btnStopCamera.Location = new System.Drawing.Point(967, 221);
this.btnStopCamera.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.btnStopCamera.Name = "btnStopCamera";
2026-03-18 08:58:39 +08:00
this.btnStopCamera.Size = new System.Drawing.Size(84, 39);
2026-03-17 14:28:07 +08:00
this.btnStopCamera.TabIndex = 13;
2026-03-16 17:05:54 +08:00
this.btnStopCamera.Text = "停止";
this.btnStopCamera.UseVisualStyleBackColor = true;
this.btnStopCamera.Click += new System.EventHandler(this.btnStopCamera_Click);
//
// statusStrip1
//
2026-03-18 08:58:39 +08:00
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
2026-03-16 17:05:54 +08:00
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
2026-03-17 09:21:09 +08:00
this.lblStatus});
2026-03-18 08:58:39 +08:00
this.statusStrip1.Location = new System.Drawing.Point(0, 693);
2026-03-16 17:05:54 +08:00
this.statusStrip1.Name = "statusStrip1";
2026-03-18 08:58:39 +08:00
this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0);
this.statusStrip1.Size = new System.Drawing.Size(1067, 25);
2026-03-16 17:05:54 +08:00
this.statusStrip1.TabIndex = 11;
this.statusStrip1.Text = "statusStrip1";
//
2026-03-17 09:21:09 +08:00
// lblStatus
2026-03-16 17:05:54 +08:00
//
2026-03-17 09:21:09 +08:00
this.lblStatus.Name = "lblStatus";
2026-03-18 08:58:39 +08:00
this.lblStatus.Size = new System.Drawing.Size(107, 20);
2026-03-17 09:21:09 +08:00
this.lblStatus.Text = "状态: 未初始化";
2026-03-16 17:05:54 +08:00
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtLog);
2026-03-18 08:58:39 +08:00
this.groupBox1.Location = new System.Drawing.Point(16, 555);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.groupBox1.Name = "groupBox1";
2026-03-18 08:58:39 +08:00
this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox1.Size = new System.Drawing.Size(743, 125);
2026-03-16 17:05:54 +08:00
this.groupBox1.TabIndex = 12;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "日志";
//
// txtLog
//
this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill;
2026-03-18 08:58:39 +08:00
this.txtLog.Location = new System.Drawing.Point(4, 22);
this.txtLog.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.txtLog.Multiline = true;
this.txtLog.Name = "txtLog";
this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
2026-03-18 08:58:39 +08:00
this.txtLog.Size = new System.Drawing.Size(735, 99);
2026-03-16 17:05:54 +08:00
this.txtLog.TabIndex = 0;
//
2026-03-18 08:58:39 +08:00
// lblIpAddress
//
this.lblIpAddress.AutoSize = true;
this.lblIpAddress.Location = new System.Drawing.Point(811, 156);
this.lblIpAddress.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblIpAddress.Name = "lblIpAddress";
this.lblIpAddress.Size = new System.Drawing.Size(61, 15);
this.lblIpAddress.TabIndex = 3;
this.lblIpAddress.Text = "IP地址:";
//
// txtIpAddress
//
this.txtIpAddress.Location = new System.Drawing.Point(900, 152);
this.txtIpAddress.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtIpAddress.Name = "txtIpAddress";
this.txtIpAddress.Size = new System.Drawing.Size(132, 25);
this.txtIpAddress.TabIndex = 4;
this.txtIpAddress.Text = "192.168.100.10";
//
// btnSetIP
//
this.btnSetIP.Location = new System.Drawing.Point(811, 175);
this.btnSetIP.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.btnSetIP.Name = "btnSetIP";
this.btnSetIP.Size = new System.Drawing.Size(148, 39);
this.btnSetIP.TabIndex = 5;
this.btnSetIP.Text = "3. 设置IP地址";
this.btnSetIP.UseVisualStyleBackColor = true;
this.btnSetIP.Click += new System.EventHandler(this.btnSetIP_Click);
//
// camera
//
this.camera.Location = new System.Drawing.Point(980, 20);
this.camera.Name = "camera";
this.camera.Size = new System.Drawing.Size(52, 50);
this.camera.TabIndex = 14;
this.camera.TabStop = false;
//
2026-03-16 17:05:54 +08:00
// Form1
//
2026-03-18 08:58:39 +08:00
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
2026-03-16 17:05:54 +08:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2026-03-18 08:58:39 +08:00
this.ClientSize = new System.Drawing.Size(1067, 718);
this.Controls.Add(this.camera);
2026-03-16 17:05:54 +08:00
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.btnStopCamera);
this.Controls.Add(this.btnStopCapture);
this.Controls.Add(this.btnShutdown);
this.Controls.Add(this.btnShowRegionEditor);
this.Controls.Add(this.btnGetLedStatuses);
this.Controls.Add(this.btnDetectLeds);
this.Controls.Add(this.btnStartCapture);
this.Controls.Add(this.btnStartCamera);
2026-03-17 14:28:07 +08:00
this.Controls.Add(this.btnSetIP);
this.Controls.Add(this.txtIpAddress);
this.Controls.Add(this.lblIpAddress);
2026-03-16 17:05:54 +08:00
this.Controls.Add(this.btnSetConfigFile);
this.Controls.Add(this.btnInitialize);
this.Controls.Add(this.LedImage);
2026-03-18 08:58:39 +08:00
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
2026-03-16 17:05:54 +08:00
this.Name = "Form1";
this.Text = "XCamera LED灯识别测试程序";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.LedImage)).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
2026-03-18 08:58:39 +08:00
((System.ComponentModel.ISupportInitialize)(this.camera)).EndInit();
2026-03-16 17:05:54 +08:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox LedImage;
private System.Windows.Forms.Button btnInitialize;
private System.Windows.Forms.Button btnSetConfigFile;
private System.Windows.Forms.Button btnStartCamera;
private System.Windows.Forms.Button btnStartCapture;
private System.Windows.Forms.Button btnDetectLeds;
private System.Windows.Forms.Button btnGetLedStatuses;
private System.Windows.Forms.Button btnShowRegionEditor;
private System.Windows.Forms.Button btnShutdown;
private System.Windows.Forms.Button btnStopCapture;
private System.Windows.Forms.Button btnStopCamera;
private System.Windows.Forms.StatusStrip statusStrip1;
2026-03-17 09:21:09 +08:00
private System.Windows.Forms.ToolStripStatusLabel lblStatus;
2026-03-16 17:05:54 +08:00
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txtLog;
2026-03-17 14:28:07 +08:00
private System.Windows.Forms.Label lblIpAddress;
private System.Windows.Forms.TextBox txtIpAddress;
private System.Windows.Forms.Button btnSetIP;
2026-03-18 08:58:39 +08:00
private System.Windows.Forms.PictureBox camera;
2026-03-16 17:05:54 +08:00
}
}