tbf/WorkflowConfigurator/Forms/EditOrAbandonMsgBox.Designer.cs
2022-01-07 12:23:23 +01:00

105 lines
4.4 KiB
C#

namespace WorkflowConfigurator.Forms
{
partial class EditOrAbandonMsgBox
{
/// <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()
{
this.label1 = new System.Windows.Forms.Label();
this.editButton = new System.Windows.Forms.Button();
this.abandonButton = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 0;
this.label1.Text = "label1";
//
// editButton
//
this.editButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.editButton.DialogResult = System.Windows.Forms.DialogResult.Retry;
this.editButton.Location = new System.Drawing.Point(100, 77);
this.editButton.Name = "editButton";
this.editButton.Size = new System.Drawing.Size(160, 25);
this.editButton.TabIndex = 1;
this.editButton.Text = "Return to editing";
this.editButton.UseVisualStyleBackColor = true;
//
// abandonButton
//
this.abandonButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.abandonButton.DialogResult = System.Windows.Forms.DialogResult.Abort;
this.abandonButton.Location = new System.Drawing.Point(266, 77);
this.abandonButton.Name = "abandonButton";
this.abandonButton.Size = new System.Drawing.Size(160, 25);
this.abandonButton.TabIndex = 2;
this.abandonButton.Text = "Abandon changes";
this.abandonButton.UseVisualStyleBackColor = true;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(20, 44);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 13);
this.label2.TabIndex = 3;
this.label2.Text = "label2";
//
// EditOrAbandonMsgBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(442, 111);
this.Controls.Add(this.label2);
this.Controls.Add(this.abandonButton);
this.Controls.Add(this.editButton);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "EditOrAbandonMsgBox";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "EditOrAbandonMsgBox";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button editButton;
private System.Windows.Forms.Button abandonButton;
private System.Windows.Forms.Label label2;
}
}