103 lines
4.5 KiB
C#
103 lines
4.5 KiB
C#
namespace TBF.UI.Procedures.TestWizard
|
|
{
|
|
partial class ConfirmUpdatingTests
|
|
{
|
|
/// <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.cancelButton = new System.Windows.Forms.Button();
|
|
this.nextButton = new System.Windows.Forms.Button();
|
|
this.backButton = new System.Windows.Forms.Button();
|
|
this.messageLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.cancelButton.Location = new System.Drawing.Point(185, 77);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(75, 42);
|
|
this.cancelButton.TabIndex = 30;
|
|
this.cancelButton.Text = "&Cancel";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// nextButton
|
|
//
|
|
this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.nextButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.nextButton.Location = new System.Drawing.Point(104, 77);
|
|
this.nextButton.Name = "nextButton";
|
|
this.nextButton.Size = new System.Drawing.Size(75, 42);
|
|
this.nextButton.TabIndex = 29;
|
|
this.nextButton.Text = "&Next >";
|
|
this.nextButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// backButton
|
|
//
|
|
this.backButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.backButton.DialogResult = System.Windows.Forms.DialogResult.Retry;
|
|
this.backButton.Location = new System.Drawing.Point(23, 77);
|
|
this.backButton.Name = "backButton";
|
|
this.backButton.Size = new System.Drawing.Size(75, 42);
|
|
this.backButton.TabIndex = 28;
|
|
this.backButton.Text = "< &Back";
|
|
this.backButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// messageLabel
|
|
//
|
|
this.messageLabel.AutoSize = true;
|
|
this.messageLabel.Location = new System.Drawing.Point(20, 33);
|
|
this.messageLabel.Name = "messageLabel";
|
|
this.messageLabel.Size = new System.Drawing.Size(208, 13);
|
|
this.messageLabel.TabIndex = 31;
|
|
this.messageLabel.Text = "Do you want to update \'Use wizard\' tests ?";
|
|
//
|
|
// ConfirmUpdatingTests
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(284, 136);
|
|
this.Controls.Add(this.messageLabel);
|
|
this.Controls.Add(this.cancelButton);
|
|
this.Controls.Add(this.nextButton);
|
|
this.Controls.Add(this.backButton);
|
|
this.Name = "ConfirmUpdatingTests";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Confirmation";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.Button nextButton;
|
|
private System.Windows.Forms.Button backButton;
|
|
private System.Windows.Forms.Label messageLabel;
|
|
}
|
|
} |