tbf/WorkflowConfigurator/UserControls/OverviewOfProcessesCtrl.designer.cs
2022-01-07 12:23:23 +01:00

320 lines
16 KiB
C#

namespace WorkflowConfigurator.UserControls
{
partial class OverviewOfProcessesCtrl
{
/// <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.leftSplitContainer = new System.Windows.Forms.SplitContainer();
this.wizardButton = new System.Windows.Forms.Button();
this.filterGroupBox = new System.Windows.Forms.GroupBox();
this.checkBox7 = new System.Windows.Forms.CheckBox();
this.checkBox6 = new System.Windows.Forms.CheckBox();
this.nameContainsGroupBox = new System.Windows.Forms.GroupBox();
this.nameContainsTextBox = new System.Windows.Forms.TextBox();
this.checkBox9 = new System.Windows.Forms.CheckBox();
this.checkBox8 = new System.Windows.Forms.CheckBox();
this.copyButton = new System.Windows.Forms.Button();
this.newButton = new System.Windows.Forms.Button();
this.settingsButton = new System.Windows.Forms.Button();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.allProcessesLabel = new System.Windows.Forms.Label();
this.allListBox = new System.Windows.Forms.ListBox();
this.rootSplitContainer = new System.Windows.Forms.SplitContainer();
this.editProcessCtrl = new WorkflowConfigurator.UserControls.EditProcessCtrl();
((System.ComponentModel.ISupportInitialize)(this.leftSplitContainer)).BeginInit();
this.leftSplitContainer.Panel1.SuspendLayout();
this.leftSplitContainer.Panel2.SuspendLayout();
this.leftSplitContainer.SuspendLayout();
this.filterGroupBox.SuspendLayout();
this.nameContainsGroupBox.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.rootSplitContainer)).BeginInit();
this.rootSplitContainer.Panel1.SuspendLayout();
this.rootSplitContainer.Panel2.SuspendLayout();
this.rootSplitContainer.SuspendLayout();
this.SuspendLayout();
//
// leftSplitContainer
//
this.leftSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.leftSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
this.leftSplitContainer.IsSplitterFixed = true;
this.leftSplitContainer.Location = new System.Drawing.Point(0, 0);
this.leftSplitContainer.Name = "leftSplitContainer";
//
// leftSplitContainer.Panel1
//
this.leftSplitContainer.Panel1.Controls.Add(this.wizardButton);
this.leftSplitContainer.Panel1.Controls.Add(this.filterGroupBox);
this.leftSplitContainer.Panel1.Controls.Add(this.copyButton);
this.leftSplitContainer.Panel1.Controls.Add(this.newButton);
this.leftSplitContainer.Panel1.Controls.Add(this.settingsButton);
//
// leftSplitContainer.Panel2
//
this.leftSplitContainer.Panel2.Controls.Add(this.splitContainer1);
this.leftSplitContainer.Size = new System.Drawing.Size(525, 638);
this.leftSplitContainer.SplitterDistance = 125;
this.leftSplitContainer.TabIndex = 0;
//
// wizardButton
//
this.wizardButton.Location = new System.Drawing.Point(18, 125);
this.wizardButton.Name = "wizardButton";
this.wizardButton.Size = new System.Drawing.Size(89, 30);
this.wizardButton.TabIndex = 3;
this.wizardButton.Text = "Wizard";
this.wizardButton.UseVisualStyleBackColor = true;
this.wizardButton.Click += new System.EventHandler(this.wizardButton_Click);
//
// filterGroupBox
//
this.filterGroupBox.Controls.Add(this.checkBox7);
this.filterGroupBox.Controls.Add(this.checkBox6);
this.filterGroupBox.Controls.Add(this.nameContainsGroupBox);
this.filterGroupBox.Controls.Add(this.checkBox9);
this.filterGroupBox.Controls.Add(this.checkBox8);
this.filterGroupBox.Location = new System.Drawing.Point(3, 177);
this.filterGroupBox.Name = "filterGroupBox";
this.filterGroupBox.Size = new System.Drawing.Size(122, 194);
this.filterGroupBox.TabIndex = 4;
this.filterGroupBox.TabStop = false;
this.filterGroupBox.Text = "Filter";
//
// checkBox7
//
this.checkBox7.AutoSize = true;
this.checkBox7.Location = new System.Drawing.Point(4, 50);
this.checkBox7.Name = "checkBox7";
this.checkBox7.Size = new System.Drawing.Size(61, 17);
this.checkBox7.TabIndex = 6;
this.checkBox7.Text = "Testing";
this.checkBox7.UseVisualStyleBackColor = true;
this.checkBox7.CheckedChanged += new System.EventHandler(this.checkBox7_CheckedChanged);
//
// checkBox6
//
this.checkBox6.AutoSize = true;
this.checkBox6.Location = new System.Drawing.Point(4, 27);
this.checkBox6.Name = "checkBox6";
this.checkBox6.Size = new System.Drawing.Size(91, 17);
this.checkBox6.TabIndex = 5;
this.checkBox6.Text = "In preparation";
this.checkBox6.UseVisualStyleBackColor = true;
this.checkBox6.CheckedChanged += new System.EventHandler(this.checkBox6_CheckedChanged);
//
// nameContainsGroupBox
//
this.nameContainsGroupBox.Controls.Add(this.nameContainsTextBox);
this.nameContainsGroupBox.Location = new System.Drawing.Point(6, 133);
this.nameContainsGroupBox.Name = "nameContainsGroupBox";
this.nameContainsGroupBox.Size = new System.Drawing.Size(110, 45);
this.nameContainsGroupBox.TabIndex = 10;
this.nameContainsGroupBox.TabStop = false;
this.nameContainsGroupBox.Text = "Name contains";
//
// nameContainsTextBox
//
this.nameContainsTextBox.Location = new System.Drawing.Point(6, 19);
this.nameContainsTextBox.Name = "nameContainsTextBox";
this.nameContainsTextBox.Size = new System.Drawing.Size(98, 20);
this.nameContainsTextBox.TabIndex = 0;
this.nameContainsTextBox.TextChanged += new System.EventHandler(this.nameContainsTextBox_TextChanged);
//
// checkBox9
//
this.checkBox9.AutoSize = true;
this.checkBox9.Location = new System.Drawing.Point(4, 95);
this.checkBox9.Name = "checkBox9";
this.checkBox9.Size = new System.Drawing.Size(84, 17);
this.checkBox9.TabIndex = 8;
this.checkBox9.Text = "Deactivated";
this.checkBox9.UseVisualStyleBackColor = true;
this.checkBox9.CheckedChanged += new System.EventHandler(this.checkBox9_CheckedChanged);
//
// checkBox8
//
this.checkBox8.AutoSize = true;
this.checkBox8.Location = new System.Drawing.Point(4, 72);
this.checkBox8.Name = "checkBox8";
this.checkBox8.Size = new System.Drawing.Size(71, 17);
this.checkBox8.TabIndex = 7;
this.checkBox8.Text = "Released";
this.checkBox8.UseVisualStyleBackColor = true;
this.checkBox8.CheckedChanged += new System.EventHandler(this.checkBox8_CheckedChanged);
//
// copyButton
//
this.copyButton.Location = new System.Drawing.Point(18, 89);
this.copyButton.Name = "copyButton";
this.copyButton.Size = new System.Drawing.Size(89, 30);
this.copyButton.TabIndex = 2;
this.copyButton.Text = "Copy process";
this.copyButton.UseVisualStyleBackColor = true;
this.copyButton.Click += new System.EventHandler(this.copyButton_Click);
//
// newButton
//
this.newButton.Location = new System.Drawing.Point(18, 53);
this.newButton.Name = "newButton";
this.newButton.Size = new System.Drawing.Size(89, 30);
this.newButton.TabIndex = 1;
this.newButton.Text = "New process";
this.newButton.UseVisualStyleBackColor = true;
this.newButton.Click += new System.EventHandler(this.newButton_Click);
//
// settingsButton
//
this.settingsButton.Location = new System.Drawing.Point(18, 14);
this.settingsButton.Name = "settingsButton";
this.settingsButton.Size = new System.Drawing.Size(89, 23);
this.settingsButton.TabIndex = 0;
this.settingsButton.Text = "Settings";
this.settingsButton.UseVisualStyleBackColor = true;
this.settingsButton.Click += new System.EventHandler(this.settingsButton_Click);
//
// 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.allProcessesLabel);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.allListBox);
this.splitContainer1.Size = new System.Drawing.Size(396, 638);
this.splitContainer1.SplitterDistance = 25;
this.splitContainer1.TabIndex = 1;
//
// allProcessesLabel
//
this.allProcessesLabel.AutoSize = true;
this.allProcessesLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.allProcessesLabel.Location = new System.Drawing.Point(3, 6);
this.allProcessesLabel.Name = "allProcessesLabel";
this.allProcessesLabel.Size = new System.Drawing.Size(103, 16);
this.allProcessesLabel.TabIndex = 0;
this.allProcessesLabel.Text = "All processes";
//
// allListBox
//
this.allListBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.allListBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.allListBox.FormattingEnabled = true;
this.allListBox.ItemHeight = 16;
this.allListBox.Location = new System.Drawing.Point(0, 0);
this.allListBox.Name = "allListBox";
this.allListBox.Size = new System.Drawing.Size(396, 609);
this.allListBox.TabIndex = 0;
this.allListBox.SelectedIndexChanged += new System.EventHandler(this.allListBox_SelectedIndexChanged);
//
// rootSplitContainer
//
this.rootSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.rootSplitContainer.Location = new System.Drawing.Point(0, 0);
this.rootSplitContainer.Name = "rootSplitContainer";
//
// rootSplitContainer.Panel1
//
this.rootSplitContainer.Panel1.Controls.Add(this.leftSplitContainer);
//
// rootSplitContainer.Panel2
//
this.rootSplitContainer.Panel2.Controls.Add(this.editProcessCtrl);
this.rootSplitContainer.Size = new System.Drawing.Size(1153, 638);
this.rootSplitContainer.SplitterDistance = 525;
this.rootSplitContainer.TabIndex = 3;
//
// editProcessCtrl
//
this.editProcessCtrl.Dock = System.Windows.Forms.DockStyle.Fill;
this.editProcessCtrl.Location = new System.Drawing.Point(0, 0);
this.editProcessCtrl.Name = "editProcessCtrl";
this.editProcessCtrl.Size = new System.Drawing.Size(624, 638);
this.editProcessCtrl.TabIndex = 0;
//
// OverviewOfProcessesCtrl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.rootSplitContainer);
this.Name = "OverviewOfProcessesCtrl";
this.Size = new System.Drawing.Size(1153, 638);
this.Load += new System.EventHandler(this.OverviewOfProcessesCtrl_Load);
this.leftSplitContainer.Panel1.ResumeLayout(false);
this.leftSplitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.leftSplitContainer)).EndInit();
this.leftSplitContainer.ResumeLayout(false);
this.filterGroupBox.ResumeLayout(false);
this.filterGroupBox.PerformLayout();
this.nameContainsGroupBox.ResumeLayout(false);
this.nameContainsGroupBox.PerformLayout();
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.rootSplitContainer.Panel1.ResumeLayout(false);
this.rootSplitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.rootSplitContainer)).EndInit();
this.rootSplitContainer.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer leftSplitContainer;
private System.Windows.Forms.Button settingsButton;
private System.Windows.Forms.SplitContainer rootSplitContainer;
private System.Windows.Forms.ListBox allListBox;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.Label allProcessesLabel;
private System.Windows.Forms.CheckBox checkBox8;
private System.Windows.Forms.CheckBox checkBox9;
private EditProcessCtrl editProcessCtrl;
private System.Windows.Forms.GroupBox nameContainsGroupBox;
private System.Windows.Forms.TextBox nameContainsTextBox;
private System.Windows.Forms.CheckBox checkBox6;
private System.Windows.Forms.Button copyButton;
private System.Windows.Forms.Button newButton;
private System.Windows.Forms.GroupBox filterGroupBox;
private System.Windows.Forms.CheckBox checkBox7;
private System.Windows.Forms.Button wizardButton;
}
}