banboshi_V1/halftoneproject-master/Code/UI/FrmGetPosByPic.Designer.cs

518 lines
24 KiB
C#
Raw Normal View History

2023-11-01 15:13:54 +08:00
namespace ProductionControl.UI
{
partial class FrmGetPosByPic
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmGetPosByPic));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.tsbtnSave = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.tsbtnSetLinePos = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.tsbtnClear = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
2023-11-08 13:52:00 +08:00
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.textBox3 = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.textBox4 = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.textBox5 = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.textBox6 = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.textBox7 = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.textBox8 = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.textBox9 = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.textBox10 = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.textBox11 = new System.Windows.Forms.TextBox();
this.label12 = new System.Windows.Forms.Label();
this.textBox12 = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.textBox13 = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.textBox14 = new System.Windows.Forms.TextBox();
2023-11-01 15:13:54 +08:00
this.imageBox1 = new ImageToolKits.ImageBox();
this.toolStrip1.SuspendLayout();
2023-11-08 13:52:00 +08:00
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.groupBox1.SuspendLayout();
2023-11-01 15:13:54 +08:00
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsbtnSave,
this.toolStripSeparator2,
this.tsbtnSetLinePos,
this.toolStripSeparator3,
this.tsbtnClear,
this.toolStripSeparator1,
this.tsbtnClose});
this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
2023-11-08 13:52:00 +08:00
this.toolStrip1.Size = new System.Drawing.Size(959, 56);
2023-11-01 15:13:54 +08:00
this.toolStrip1.TabIndex = 15;
this.toolStrip1.Text = "toolStrip1";
//
// tsbtnSave
//
this.tsbtnSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnSave.Image")));
this.tsbtnSave.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.tsbtnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbtnSave.Name = "tsbtnSave";
this.tsbtnSave.Size = new System.Drawing.Size(52, 53);
this.tsbtnSave.Text = " 保存 ";
this.tsbtnSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbtnSave.Click += new System.EventHandler(this.tsbtnSave_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 56);
//
// tsbtnSetLinePos
//
this.tsbtnSetLinePos.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnSetLinePos.Image")));
this.tsbtnSetLinePos.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.tsbtnSetLinePos.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbtnSetLinePos.Name = "tsbtnSetLinePos";
2023-11-08 13:52:00 +08:00
this.tsbtnSetLinePos.Size = new System.Drawing.Size(60, 53);
this.tsbtnSetLinePos.Text = "返回点位";
2023-11-01 15:13:54 +08:00
this.tsbtnSetLinePos.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbtnSetLinePos.ToolTipText = "设置线宽";
2023-11-08 13:52:00 +08:00
this.tsbtnSetLinePos.Visible = false;
this.tsbtnSetLinePos.Click += new System.EventHandler(this.tsbtnDelectPos_Click);
2023-11-01 15:13:54 +08:00
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 56);
//
// tsbtnClear
//
this.tsbtnClear.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnClear.Image")));
this.tsbtnClear.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.tsbtnClear.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbtnClear.Name = "tsbtnClear";
this.tsbtnClear.Size = new System.Drawing.Size(84, 53);
this.tsbtnClear.Text = "清空所有标点";
this.tsbtnClear.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbtnClear.ToolTipText = "删除标点";
this.tsbtnClear.Click += new System.EventHandler(this.tsbtnClear_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 56);
//
// tsbtnClose
//
this.tsbtnClose.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnClose.Image")));
this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbtnClose.Name = "tsbtnClose";
this.tsbtnClose.Size = new System.Drawing.Size(52, 53);
this.tsbtnClose.Text = " 关闭 ";
this.tsbtnClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
//
2023-11-08 13:52:00 +08:00
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 56);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.imageBox1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.groupBox1);
this.splitContainer1.Size = new System.Drawing.Size(959, 509);
this.splitContainer1.SplitterDistance = 680;
this.splitContainer1.TabIndex = 16;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label14);
this.groupBox1.Controls.Add(this.textBox14);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.textBox13);
this.groupBox1.Controls.Add(this.label12);
this.groupBox1.Controls.Add(this.textBox12);
this.groupBox1.Controls.Add(this.label11);
this.groupBox1.Controls.Add(this.textBox11);
this.groupBox1.Controls.Add(this.label10);
this.groupBox1.Controls.Add(this.textBox10);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.textBox9);
this.groupBox1.Controls.Add(this.label8);
this.groupBox1.Controls.Add(this.textBox8);
this.groupBox1.Controls.Add(this.label7);
this.groupBox1.Controls.Add(this.textBox7);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.textBox6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.textBox5);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.textBox4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.textBox3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.textBox2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.textBox1);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox1.Location = new System.Drawing.Point(0, 0);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(275, 509);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "点位数据";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(71, 30);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(151, 21);
this.textBox1.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(36, 33);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 12);
this.label1.TabIndex = 1;
this.label1.Text = "PT1:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(36, 60);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(29, 12);
this.label2.TabIndex = 3;
this.label2.Text = "PT2:";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(71, 57);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(151, 21);
this.textBox2.TabIndex = 2;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(36, 87);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(29, 12);
this.label3.TabIndex = 5;
this.label3.Text = "PT3:";
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(71, 84);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(151, 21);
this.textBox3.TabIndex = 4;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(36, 114);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(29, 12);
this.label4.TabIndex = 7;
this.label4.Text = "PT4:";
//
// textBox4
//
this.textBox4.Location = new System.Drawing.Point(71, 111);
this.textBox4.Name = "textBox4";
this.textBox4.Size = new System.Drawing.Size(151, 21);
this.textBox4.TabIndex = 6;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(36, 141);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(29, 12);
this.label5.TabIndex = 9;
this.label5.Text = "PT5:";
//
// textBox5
//
this.textBox5.Location = new System.Drawing.Point(71, 138);
this.textBox5.Name = "textBox5";
this.textBox5.Size = new System.Drawing.Size(151, 21);
this.textBox5.TabIndex = 8;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(24, 204);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(41, 12);
this.label6.TabIndex = 11;
this.label6.Text = "线宽1:";
//
// textBox6
//
this.textBox6.Location = new System.Drawing.Point(71, 201);
this.textBox6.Name = "textBox6";
this.textBox6.Size = new System.Drawing.Size(151, 21);
this.textBox6.TabIndex = 10;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(24, 231);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(41, 12);
this.label7.TabIndex = 13;
this.label7.Text = "线宽2:";
//
// textBox7
//
this.textBox7.Location = new System.Drawing.Point(71, 228);
this.textBox7.Name = "textBox7";
this.textBox7.Size = new System.Drawing.Size(151, 21);
this.textBox7.TabIndex = 12;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(24, 258);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(41, 12);
this.label8.TabIndex = 15;
this.label8.Text = "线宽3:";
//
// textBox8
//
this.textBox8.Location = new System.Drawing.Point(71, 255);
this.textBox8.Name = "textBox8";
this.textBox8.Size = new System.Drawing.Size(151, 21);
this.textBox8.TabIndex = 14;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(24, 285);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(41, 12);
this.label9.TabIndex = 17;
this.label9.Text = "线宽4:";
//
// textBox9
//
this.textBox9.Location = new System.Drawing.Point(71, 282);
this.textBox9.Name = "textBox9";
this.textBox9.Size = new System.Drawing.Size(151, 21);
this.textBox9.TabIndex = 16;
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(24, 312);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(41, 12);
this.label10.TabIndex = 19;
this.label10.Text = "线宽5:";
//
// textBox10
//
this.textBox10.Location = new System.Drawing.Point(71, 309);
this.textBox10.Name = "textBox10";
this.textBox10.Size = new System.Drawing.Size(151, 21);
this.textBox10.TabIndex = 18;
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(24, 339);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(41, 12);
this.label11.TabIndex = 21;
this.label11.Text = "线宽6:";
//
// textBox11
//
this.textBox11.Location = new System.Drawing.Point(71, 336);
this.textBox11.Name = "textBox11";
this.textBox11.Size = new System.Drawing.Size(151, 21);
this.textBox11.TabIndex = 20;
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(24, 366);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(41, 12);
this.label12.TabIndex = 23;
this.label12.Text = "线宽7:";
//
// textBox12
//
this.textBox12.Location = new System.Drawing.Point(71, 363);
this.textBox12.Name = "textBox12";
this.textBox12.Size = new System.Drawing.Size(151, 21);
this.textBox12.TabIndex = 22;
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(24, 393);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(41, 12);
this.label13.TabIndex = 25;
this.label13.Text = "线宽8:";
//
// textBox13
//
this.textBox13.Location = new System.Drawing.Point(71, 390);
this.textBox13.Name = "textBox13";
this.textBox13.Size = new System.Drawing.Size(151, 21);
this.textBox13.TabIndex = 24;
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(24, 420);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(41, 12);
this.label14.TabIndex = 27;
this.label14.Text = "线宽9:";
//
// textBox14
//
this.textBox14.Location = new System.Drawing.Point(71, 417);
this.textBox14.Name = "textBox14";
this.textBox14.Size = new System.Drawing.Size(151, 21);
this.textBox14.TabIndex = 26;
//
2023-11-01 15:13:54 +08:00
// imageBox1
//
this.imageBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.imageBox1.ColorName = System.Drawing.Color.LimeGreen;
2023-11-08 13:52:00 +08:00
this.imageBox1.Dock = System.Windows.Forms.DockStyle.Fill;
2023-11-01 15:13:54 +08:00
this.imageBox1.DrawParam = null;
this.imageBox1.Image = null;
2023-11-08 13:52:00 +08:00
this.imageBox1.Location = new System.Drawing.Point(0, 0);
2023-11-01 15:13:54 +08:00
this.imageBox1.Margin = new System.Windows.Forms.Padding(0);
this.imageBox1.Name = "imageBox1";
2023-11-08 13:52:00 +08:00
this.imageBox1.Size = new System.Drawing.Size(680, 509);
this.imageBox1.TabIndex = 15;
2023-11-01 15:13:54 +08:00
//
// FrmGetPosByPic
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ActiveCaption;
2023-11-08 13:52:00 +08:00
this.ClientSize = new System.Drawing.Size(959, 565);
this.Controls.Add(this.splitContainer1);
2023-11-01 15:13:54 +08:00
this.Controls.Add(this.toolStrip1);
this.Name = "FrmGetPosByPic";
this.Text = "图纸抓取点位";
this.Load += new System.EventHandler(this.FrmGetPosByPic_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
2023-11-08 13:52:00 +08:00
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
2023-11-01 15:13:54 +08:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton tsbtnSave;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton tsbtnSetLinePos;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripButton tsbtnClear;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton tsbtnClose;
2023-11-08 13:52:00 +08:00
private System.Windows.Forms.SplitContainer splitContainer1;
2023-11-01 15:13:54 +08:00
private ImageToolKits.ImageBox imageBox1;
2023-11-08 13:52:00 +08:00
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.TextBox textBox14;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.TextBox textBox13;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.TextBox textBox12;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.TextBox textBox11;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.TextBox textBox10;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.TextBox textBox9;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox textBox8;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox textBox7;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox textBox6;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox textBox5;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox textBox4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox1;
2023-11-01 15:13:54 +08:00
}
}