94 lines
3.8 KiB
C#
94 lines
3.8 KiB
C#
namespace TBF.BenchControl.Operations
|
|
{
|
|
partial class MessageBoxForm
|
|
{
|
|
/// <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.yesButton = new System.Windows.Forms.Button();
|
|
this.noButton = new System.Windows.Forms.Button();
|
|
this.questionLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// yesButton
|
|
//
|
|
this.yesButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|
this.yesButton.ForeColor = System.Drawing.Color.Black;
|
|
this.yesButton.Location = new System.Drawing.Point(244, 99);
|
|
this.yesButton.Name = "yesButton";
|
|
this.yesButton.Size = new System.Drawing.Size(98, 63);
|
|
this.yesButton.TabIndex = 1;
|
|
this.yesButton.Text = "Yes";
|
|
this.yesButton.UseVisualStyleBackColor = true;
|
|
this.yesButton.Click += new System.EventHandler(this.yesButton_Click);
|
|
//
|
|
// noButton
|
|
//
|
|
this.noButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|
this.noButton.ForeColor = System.Drawing.Color.Black;
|
|
this.noButton.Location = new System.Drawing.Point(109, 99);
|
|
this.noButton.Name = "noButton";
|
|
this.noButton.Size = new System.Drawing.Size(98, 63);
|
|
this.noButton.TabIndex = 2;
|
|
this.noButton.Text = "No";
|
|
this.noButton.UseVisualStyleBackColor = true;
|
|
this.noButton.Click += new System.EventHandler(this.noButton_Click);
|
|
//
|
|
// questionLabel
|
|
//
|
|
this.questionLabel.AutoSize = true;
|
|
this.questionLabel.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|
this.questionLabel.Location = new System.Drawing.Point(34, 39);
|
|
this.questionLabel.Name = "questionLabel";
|
|
this.questionLabel.Size = new System.Drawing.Size(105, 23);
|
|
this.questionLabel.TabIndex = 4;
|
|
this.questionLabel.Text = "Question?";
|
|
//
|
|
// MessageBoxForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.Goldenrod;
|
|
this.ClientSize = new System.Drawing.Size(454, 201);
|
|
this.Controls.Add(this.questionLabel);
|
|
this.Controls.Add(this.noButton);
|
|
this.Controls.Add(this.yesButton);
|
|
this.Name = "MessageBoxForm";
|
|
this.Text = "Question";
|
|
this.TopMost = true;
|
|
this.Load += new System.EventHandler(this.AskYesNoForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button yesButton;
|
|
private System.Windows.Forms.Button noButton;
|
|
private System.Windows.Forms.Label questionLabel;
|
|
}
|
|
} |