190 lines
6.9 KiB
C#
190 lines
6.9 KiB
C#
namespace Hawkeye.VisionBuilder.Features.VisionSteps
|
|
{
|
|
partial class VisionStepsPanel
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridView1 = new DataGridView();
|
|
panel1 = new Panel();
|
|
lblProcessingTime = new Label();
|
|
label1 = new Label();
|
|
btnTest = new Button();
|
|
button1 = new Button();
|
|
Indicator = new DataGridViewTextBoxColumn();
|
|
Enabled = new DataGridViewCheckBoxColumn();
|
|
UserName = new DataGridViewTextBoxColumn();
|
|
Result = new DataGridViewTextBoxColumn();
|
|
TypeName = new DataGridViewTextBoxColumn();
|
|
Time = new DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
|
|
panel1.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
dataGridView1.AllowDrop = true;
|
|
dataGridView1.AllowUserToAddRows = false;
|
|
dataGridView1.AllowUserToDeleteRows = false;
|
|
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView1.Columns.AddRange(new DataGridViewColumn[] { Indicator, Enabled, UserName, Result, TypeName, Time });
|
|
dataGridView1.Dock = DockStyle.Fill;
|
|
dataGridView1.Location = new Point(0, 40);
|
|
dataGridView1.MultiSelect = false;
|
|
dataGridView1.Name = "dataGridView1";
|
|
dataGridView1.ReadOnly = true;
|
|
dataGridView1.RowHeadersVisible = false;
|
|
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridView1.Size = new Size(540, 562);
|
|
dataGridView1.TabIndex = 0;
|
|
dataGridView1.DragDrop += dataGridView1_DragDrop;
|
|
dataGridView1.DragOver += dataGridView1_DragOver;
|
|
dataGridView1.KeyDown += dataGridView1_KeyDown;
|
|
dataGridView1.MouseDown += dataGridView1_MouseDown;
|
|
dataGridView1.MouseMove += dataGridView1_MouseMove;
|
|
dataGridView1.MouseUp += dataGridView1_MouseUp;
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(lblProcessingTime);
|
|
panel1.Controls.Add(label1);
|
|
panel1.Controls.Add(btnTest);
|
|
panel1.Controls.Add(button1);
|
|
panel1.Dock = DockStyle.Top;
|
|
panel1.Location = new Point(0, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(540, 40);
|
|
panel1.TabIndex = 1;
|
|
//
|
|
// lblProcessingTime
|
|
//
|
|
lblProcessingTime.AutoSize = true;
|
|
lblProcessingTime.Location = new Point(312, 16);
|
|
lblProcessingTime.Name = "lblProcessingTime";
|
|
lblProcessingTime.Size = new Size(32, 15);
|
|
lblProcessingTime.TabIndex = 3;
|
|
lblProcessingTime.Text = "0 ms";
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(216, 16);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(94, 15);
|
|
label1.TabIndex = 2;
|
|
label1.Text = "Processing time:";
|
|
//
|
|
// btnTest
|
|
//
|
|
btnTest.Location = new Point(112, 8);
|
|
btnTest.Name = "btnTest";
|
|
btnTest.Size = new Size(96, 23);
|
|
btnTest.TabIndex = 1;
|
|
btnTest.Text = "Test run";
|
|
btnTest.UseVisualStyleBackColor = true;
|
|
btnTest.Click += btnTest_Click;
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(8, 8);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(96, 23);
|
|
button1.TabIndex = 0;
|
|
button1.Text = "&Add tool";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += button1_Click;
|
|
//
|
|
// Indicator
|
|
//
|
|
Indicator.HeaderText = "";
|
|
Indicator.MinimumWidth = 20;
|
|
Indicator.Name = "Indicator";
|
|
Indicator.ReadOnly = true;
|
|
Indicator.Width = 32;
|
|
//
|
|
// Enabled
|
|
//
|
|
Enabled.HeaderText = "";
|
|
Enabled.Name = "Enabled";
|
|
Enabled.ReadOnly = true;
|
|
Enabled.Width = 32;
|
|
//
|
|
// UserName
|
|
//
|
|
UserName.HeaderText = "Label";
|
|
UserName.Name = "UserName";
|
|
UserName.ReadOnly = true;
|
|
//
|
|
// Result
|
|
//
|
|
Result.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
Result.HeaderText = "Result";
|
|
Result.Name = "Result";
|
|
Result.ReadOnly = true;
|
|
//
|
|
// TypeName
|
|
//
|
|
TypeName.HeaderText = "Type";
|
|
TypeName.Name = "TypeName";
|
|
TypeName.ReadOnly = true;
|
|
//
|
|
// Time
|
|
//
|
|
Time.HeaderText = "Time";
|
|
Time.Name = "Time";
|
|
Time.ReadOnly = true;
|
|
//
|
|
// VisionStepsPanel
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(540, 602);
|
|
Controls.Add(dataGridView1);
|
|
Controls.Add(panel1);
|
|
Name = "VisionStepsPanel";
|
|
Text = "Vision Steps";
|
|
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
|
|
panel1.ResumeLayout(false);
|
|
panel1.PerformLayout();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView1;
|
|
private Panel panel1;
|
|
private Button button1;
|
|
private Button btnTest;
|
|
private Label lblProcessingTime;
|
|
private Label label1;
|
|
private DataGridViewTextBoxColumn Indicator;
|
|
private DataGridViewCheckBoxColumn Enabled;
|
|
private DataGridViewTextBoxColumn UserName;
|
|
private DataGridViewTextBoxColumn Result;
|
|
private DataGridViewTextBoxColumn TypeName;
|
|
private DataGridViewTextBoxColumn Time;
|
|
}
|
|
} |