/// /// Copyright (c) 2013-2015 Sensus Metering Systems /// namespace TBF.BenchControl.Operations { partial class AskYesNoForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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(311, 97); 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(176, 97); 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?"; // // AskYesNoForm // 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(587, 201); this.Controls.Add(this.questionLabel); this.Controls.Add(this.noButton); this.Controls.Add(this.yesButton); this.Name = "AskYesNoForm"; this.Text = "Question"; this.TopMost = true; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button yesButton; private System.Windows.Forms.Button noButton; private System.Windows.Forms.Label questionLabel; } }