204 lines
9.9 KiB
C#
204 lines
9.9 KiB
C#
namespace WorkflowConfigurator.UserControls
|
|
{
|
|
partial class WorkstepCtrl
|
|
{
|
|
/// <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 Component 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.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.refPartComboBox = new System.Windows.Forms.ComboBox();
|
|
this.refPartLabel = new System.Windows.Forms.Label();
|
|
this.workstepDescriptionTextBox = new System.Windows.Forms.TextBox();
|
|
this.workstepNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.workstepDescriptionLabel = new System.Windows.Forms.Label();
|
|
this.workstepNameLabel = new System.Windows.Forms.Label();
|
|
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
|
this.listBox1 = new System.Windows.Forms.ListBox();
|
|
this.listBox2 = new System.Windows.Forms.ListBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
|
|
this.splitContainer2.Panel1.SuspendLayout();
|
|
this.splitContainer2.Panel2.SuspendLayout();
|
|
this.splitContainer2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
|
this.splitContainer1.IsSplitterFixed = true;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.refPartComboBox);
|
|
this.splitContainer1.Panel1.Controls.Add(this.refPartLabel);
|
|
this.splitContainer1.Panel1.Controls.Add(this.workstepDescriptionTextBox);
|
|
this.splitContainer1.Panel1.Controls.Add(this.workstepNameTextBox);
|
|
this.splitContainer1.Panel1.Controls.Add(this.workstepDescriptionLabel);
|
|
this.splitContainer1.Panel1.Controls.Add(this.workstepNameLabel);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
|
|
this.splitContainer1.Size = new System.Drawing.Size(622, 420);
|
|
this.splitContainer1.SplitterDistance = 80;
|
|
this.splitContainer1.TabIndex = 0;
|
|
//
|
|
// refPartComboBox
|
|
//
|
|
this.refPartComboBox.FormattingEnabled = true;
|
|
this.refPartComboBox.Location = new System.Drawing.Point(114, 57);
|
|
this.refPartComboBox.Name = "refPartComboBox";
|
|
this.refPartComboBox.Size = new System.Drawing.Size(282, 21);
|
|
this.refPartComboBox.TabIndex = 13;
|
|
this.refPartComboBox.SelectedIndexChanged += new System.EventHandler(this.refPartComboBox_SelectedIndexChanged);
|
|
this.refPartComboBox.TextChanged += new System.EventHandler(this.refPartComboBox_TextChanged);
|
|
//
|
|
// refPartLabel
|
|
//
|
|
this.refPartLabel.AutoSize = true;
|
|
this.refPartLabel.Location = new System.Drawing.Point(14, 61);
|
|
this.refPartLabel.Name = "refPartLabel";
|
|
this.refPartLabel.Size = new System.Drawing.Size(48, 13);
|
|
this.refPartLabel.TabIndex = 9;
|
|
this.refPartLabel.Text = "Ref. part";
|
|
//
|
|
// workstepDescriptionTextBox
|
|
//
|
|
this.workstepDescriptionTextBox.Enabled = false;
|
|
this.workstepDescriptionTextBox.Location = new System.Drawing.Point(114, 34);
|
|
this.workstepDescriptionTextBox.Name = "workstepDescriptionTextBox";
|
|
this.workstepDescriptionTextBox.Size = new System.Drawing.Size(496, 20);
|
|
this.workstepDescriptionTextBox.TabIndex = 8;
|
|
this.workstepDescriptionTextBox.TextChanged += new System.EventHandler(this.workstepDescriptionTextBox_TextChanged);
|
|
//
|
|
// workstepNameTextBox
|
|
//
|
|
this.workstepNameTextBox.Enabled = false;
|
|
this.workstepNameTextBox.Location = new System.Drawing.Point(114, 11);
|
|
this.workstepNameTextBox.Name = "workstepNameTextBox";
|
|
this.workstepNameTextBox.Size = new System.Drawing.Size(282, 20);
|
|
this.workstepNameTextBox.TabIndex = 7;
|
|
this.workstepNameTextBox.TextChanged += new System.EventHandler(this.workstepNameTextBox_TextChanged);
|
|
//
|
|
// workstepDescriptionLabel
|
|
//
|
|
this.workstepDescriptionLabel.AutoSize = true;
|
|
this.workstepDescriptionLabel.Location = new System.Drawing.Point(14, 38);
|
|
this.workstepDescriptionLabel.Name = "workstepDescriptionLabel";
|
|
this.workstepDescriptionLabel.Size = new System.Drawing.Size(63, 13);
|
|
this.workstepDescriptionLabel.TabIndex = 6;
|
|
this.workstepDescriptionLabel.Text = "Description:";
|
|
//
|
|
// workstepNameLabel
|
|
//
|
|
this.workstepNameLabel.AutoSize = true;
|
|
this.workstepNameLabel.Location = new System.Drawing.Point(14, 15);
|
|
this.workstepNameLabel.Name = "workstepNameLabel";
|
|
this.workstepNameLabel.Size = new System.Drawing.Size(78, 13);
|
|
this.workstepNameLabel.TabIndex = 5;
|
|
this.workstepNameLabel.Text = "Workflow step:";
|
|
//
|
|
// splitContainer2
|
|
//
|
|
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer2.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer2.Name = "splitContainer2";
|
|
this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitContainer2.Panel1
|
|
//
|
|
this.splitContainer2.Panel1.Controls.Add(this.listBox1);
|
|
//
|
|
// splitContainer2.Panel2
|
|
//
|
|
this.splitContainer2.Panel2.Controls.Add(this.listBox2);
|
|
this.splitContainer2.Size = new System.Drawing.Size(622, 336);
|
|
this.splitContainer2.SplitterDistance = 110;
|
|
this.splitContainer2.TabIndex = 0;
|
|
//
|
|
// listBox1
|
|
//
|
|
this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listBox1.FormattingEnabled = true;
|
|
this.listBox1.Location = new System.Drawing.Point(0, 0);
|
|
this.listBox1.Name = "listBox1";
|
|
this.listBox1.Size = new System.Drawing.Size(622, 110);
|
|
this.listBox1.TabIndex = 0;
|
|
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
|
|
//
|
|
// listBox2
|
|
//
|
|
this.listBox2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listBox2.FormattingEnabled = true;
|
|
this.listBox2.Location = new System.Drawing.Point(0, 0);
|
|
this.listBox2.Name = "listBox2";
|
|
this.listBox2.Size = new System.Drawing.Size(622, 222);
|
|
this.listBox2.TabIndex = 0;
|
|
this.listBox2.SelectedIndexChanged += new System.EventHandler(this.listBox2_SelectedIndexChanged);
|
|
//
|
|
// WorkstepCtrl
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Name = "WorkstepCtrl";
|
|
this.Size = new System.Drawing.Size(622, 420);
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel1.PerformLayout();
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.splitContainer2.Panel1.ResumeLayout(false);
|
|
this.splitContainer2.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
|
|
this.splitContainer2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.SplitContainer splitContainer2;
|
|
private System.Windows.Forms.ListBox listBox1;
|
|
private System.Windows.Forms.ListBox listBox2;
|
|
private System.Windows.Forms.TextBox workstepDescriptionTextBox;
|
|
private System.Windows.Forms.TextBox workstepNameTextBox;
|
|
private System.Windows.Forms.Label workstepDescriptionLabel;
|
|
private System.Windows.Forms.Label workstepNameLabel;
|
|
private System.Windows.Forms.Label refPartLabel;
|
|
private System.Windows.Forms.ComboBox refPartComboBox;
|
|
|
|
}
|
|
}
|