2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
namespace TBF.BenchControl.Operations
|
2014-08-12 16:22:32 +00:00
|
|
|
|
{
|
|
|
|
|
|
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()
|
|
|
|
|
|
{
|
2014-08-12 20:21:26 +00:00
|
|
|
|
this.okButton = new System.Windows.Forms.Button();
|
|
|
|
|
|
this.messageLabel = new System.Windows.Forms.Label();
|
2014-08-12 16:22:32 +00:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
|
//
|
2014-08-12 20:21:26 +00:00
|
|
|
|
// okButton
|
2014-08-12 16:22:32 +00:00
|
|
|
|
//
|
2014-08-12 20:21:26 +00:00
|
|
|
|
this.okButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|
|
|
|
|
this.okButton.ForeColor = System.Drawing.Color.Black;
|
|
|
|
|
|
this.okButton.Location = new System.Drawing.Point(177, 99);
|
|
|
|
|
|
this.okButton.Name = "okButton";
|
|
|
|
|
|
this.okButton.Size = new System.Drawing.Size(98, 63);
|
|
|
|
|
|
this.okButton.TabIndex = 1;
|
|
|
|
|
|
this.okButton.Text = "OK";
|
|
|
|
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
2014-08-12 16:22:32 +00:00
|
|
|
|
//
|
2014-08-12 20:21:26 +00:00
|
|
|
|
// messageLabel
|
2014-08-12 16:22:32 +00:00
|
|
|
|
//
|
2014-08-12 20:21:26 +00:00
|
|
|
|
this.messageLabel.AutoSize = true;
|
|
|
|
|
|
this.messageLabel.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|
|
|
|
|
this.messageLabel.Location = new System.Drawing.Point(34, 39);
|
|
|
|
|
|
this.messageLabel.Name = "messageLabel";
|
|
|
|
|
|
this.messageLabel.Size = new System.Drawing.Size(91, 23);
|
|
|
|
|
|
this.messageLabel.TabIndex = 4;
|
|
|
|
|
|
this.messageLabel.Text = "Message";
|
2014-08-12 16:22:32 +00:00
|
|
|
|
//
|
|
|
|
|
|
// 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);
|
2014-08-12 20:21:26 +00:00
|
|
|
|
this.Controls.Add(this.messageLabel);
|
|
|
|
|
|
this.Controls.Add(this.okButton);
|
2018-02-06 14:26:50 +00:00
|
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
2018-09-06 15:14:35 +00:00
|
|
|
|
this.MaximizeBox = false;
|
|
|
|
|
|
this.MinimizeBox = false;
|
2014-08-12 16:22:32 +00:00
|
|
|
|
this.Name = "MessageBoxForm";
|
2018-02-06 14:26:50 +00:00
|
|
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
|
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
2014-08-12 16:22:32 +00:00
|
|
|
|
this.TopMost = true;
|
2018-09-06 15:14:35 +00:00
|
|
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MessageBoxForm_FormClosing);
|
2014-08-12 16:22:32 +00:00
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
2014-08-12 20:21:26 +00:00
|
|
|
|
private System.Windows.Forms.Button okButton;
|
|
|
|
|
|
private System.Windows.Forms.Label messageLabel;
|
2014-08-12 16:22:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|