tbf/TBF/UI/Shared/ClosingTbfForm.Designer.cs

101 lines
4.1 KiB
C#

namespace TBF.UI.Shared
{
partial class ClosingTbfForm
{
/// <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.messageLabel = new System.Windows.Forms.Label();
this.shutDownPCCheckBox = new System.Windows.Forms.CheckBox();
this.yesButton = new System.Windows.Forms.Button();
this.noButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// messageLabel
//
this.messageLabel.AutoSize = true;
this.messageLabel.Location = new System.Drawing.Point(39, 33);
this.messageLabel.Name = "messageLabel";
this.messageLabel.Size = new System.Drawing.Size(220, 13);
this.messageLabel.TabIndex = 0;
this.messageLabel.Text = "Do you want to exit Test Bench Framework ?";
//
// shutDownPCCheckBox
//
this.shutDownPCCheckBox.AutoSize = true;
this.shutDownPCCheckBox.Location = new System.Drawing.Point(42, 66);
this.shutDownPCCheckBox.Name = "shutDownPCCheckBox";
this.shutDownPCCheckBox.Size = new System.Drawing.Size(294, 17);
this.shutDownPCCheckBox.TabIndex = 1;
this.shutDownPCCheckBox.Text = "Shut down computer after exiting Test Bench Framework";
this.shutDownPCCheckBox.UseVisualStyleBackColor = true;
//
// yesButton
//
this.yesButton.DialogResult = System.Windows.Forms.DialogResult.Yes;
this.yesButton.Location = new System.Drawing.Point(104, 109);
this.yesButton.Name = "yesButton";
this.yesButton.Size = new System.Drawing.Size(88, 32);
this.yesButton.TabIndex = 2;
this.yesButton.Text = "Yes";
this.yesButton.UseVisualStyleBackColor = true;
this.yesButton.Click += new System.EventHandler(this.yesButton_Click);
//
// noButton
//
this.noButton.DialogResult = System.Windows.Forms.DialogResult.No;
this.noButton.Location = new System.Drawing.Point(212, 109);
this.noButton.Name = "noButton";
this.noButton.Size = new System.Drawing.Size(88, 32);
this.noButton.TabIndex = 3;
this.noButton.Text = "No";
this.noButton.UseVisualStyleBackColor = true;
//
// ClosingTbfForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(404, 153);
this.Controls.Add(this.noButton);
this.Controls.Add(this.yesButton);
this.Controls.Add(this.shutDownPCCheckBox);
this.Controls.Add(this.messageLabel);
this.Name = "ClosingTbfForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Closing the program";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label messageLabel;
private System.Windows.Forms.CheckBox shutDownPCCheckBox;
private System.Windows.Forms.Button yesButton;
private System.Windows.Forms.Button noButton;
}
}