tbf/WorkflowConfigurator/UserControls/WorkstepsCtrl.Designer.cs
2022-01-07 12:23:23 +01:00

136 lines
6.5 KiB
C#

namespace WorkflowConfigurator.UserControls
{
partial class WorkstepsCtrl
{
/// <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.splitContainer = new System.Windows.Forms.SplitContainer();
this.removeWsButton = new System.Windows.Forms.Button();
this.addWsButton = new System.Windows.Forms.Button();
this.analyzeButton = new System.Windows.Forms.Button();
this.workstepsTabControl = new WorkflowConfigurator.UserControls.DraggableTabControl();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout();
this.splitContainer.SuspendLayout();
this.SuspendLayout();
//
// splitContainer
//
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer.IsSplitterFixed = true;
this.splitContainer.Location = new System.Drawing.Point(0, 0);
this.splitContainer.Name = "splitContainer";
this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer.Panel1
//
this.splitContainer.Panel1.Controls.Add(this.analyzeButton);
this.splitContainer.Panel1.Controls.Add(this.removeWsButton);
this.splitContainer.Panel1.Controls.Add(this.addWsButton);
//
// splitContainer.Panel2
//
this.splitContainer.Panel2.Controls.Add(this.workstepsTabControl);
this.splitContainer.Size = new System.Drawing.Size(300, 321);
this.splitContainer.SplitterDistance = 30;
this.splitContainer.SplitterWidth = 1;
this.splitContainer.TabIndex = 0;
//
// removeWsButton
//
this.removeWsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.removeWsButton.Enabled = false;
this.removeWsButton.Location = new System.Drawing.Point(140, 5);
this.removeWsButton.Name = "removeWsButton";
this.removeWsButton.Size = new System.Drawing.Size(75, 22);
this.removeWsButton.TabIndex = 6;
this.removeWsButton.Text = "Remove";
this.removeWsButton.UseVisualStyleBackColor = true;
this.removeWsButton.Click += new System.EventHandler(this.removeWsButton_Click);
//
// addWsButton
//
this.addWsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.addWsButton.Enabled = false;
this.addWsButton.Location = new System.Drawing.Point(60, 5);
this.addWsButton.Name = "addWsButton";
this.addWsButton.Size = new System.Drawing.Size(75, 22);
this.addWsButton.TabIndex = 5;
this.addWsButton.Text = "Add";
this.addWsButton.UseVisualStyleBackColor = true;
this.addWsButton.Click += new System.EventHandler(this.addWsButton_Click);
//
// analyzeButton
//
this.analyzeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.analyzeButton.Location = new System.Drawing.Point(220, 5);
this.analyzeButton.Name = "analyzeButton";
this.analyzeButton.Size = new System.Drawing.Size(75, 22);
this.analyzeButton.TabIndex = 7;
this.analyzeButton.Text = "Analyze";
this.analyzeButton.UseVisualStyleBackColor = true;
this.analyzeButton.Click += new System.EventHandler(this.analyzeButton_Click);
//
// workstepsTabControl
//
this.workstepsTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.workstepsTabControl.Location = new System.Drawing.Point(0, 0);
this.workstepsTabControl.Name = "workstepsTabControl";
this.workstepsTabControl.SelectedIndex = 0;
this.workstepsTabControl.Size = new System.Drawing.Size(300, 290);
this.workstepsTabControl.TabIndex = 1;
this.workstepsTabControl.SelectedIndexChanged += new System.EventHandler(this.workstepsTabControl_SelectedIndexChanged);
this.workstepsTabControl.Selected += new System.Windows.Forms.TabControlEventHandler(this.workstepsTabControl_Selected);
this.workstepsTabControl.MouseUp += new System.Windows.Forms.MouseEventHandler(this.workstepsTabControl_MouseUp);
//
// WorkstepsCtrl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.splitContainer);
this.Name = "WorkstepsCtrl";
this.Size = new System.Drawing.Size(300, 321);
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
this.splitContainer.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer;
private System.Windows.Forms.Button addWsButton;
private System.Windows.Forms.Button removeWsButton;
private DraggableTabControl workstepsTabControl;
private System.Windows.Forms.Button analyzeButton;
}
}