120 lines
4.8 KiB
C#
120 lines
4.8 KiB
C#
namespace TBF.Forms
|
|
{
|
|
partial class NoBenchOrDatabaseDlg
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NoBenchOrDatabaseDlg));
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
this.retryButton = new System.Windows.Forms.Button();
|
|
this.configureButton = new System.Windows.Forms.Button();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.errorMessageLabel = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// exitButton
|
|
//
|
|
this.exitButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.exitButton.Location = new System.Drawing.Point(42, 68);
|
|
this.exitButton.Name = "exitButton";
|
|
this.exitButton.Size = new System.Drawing.Size(246, 33);
|
|
this.exitButton.TabIndex = 0;
|
|
this.exitButton.Text = "Exit";
|
|
this.exitButton.UseVisualStyleBackColor = true;
|
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
|
//
|
|
// retryButton
|
|
//
|
|
this.retryButton.Location = new System.Drawing.Point(42, 146);
|
|
this.retryButton.Name = "retryButton";
|
|
this.retryButton.Size = new System.Drawing.Size(246, 33);
|
|
this.retryButton.TabIndex = 1;
|
|
this.retryButton.Text = "Retry database connection";
|
|
this.retryButton.UseVisualStyleBackColor = true;
|
|
this.retryButton.Click += new System.EventHandler(this.retryButton_Click);
|
|
//
|
|
// configureButton
|
|
//
|
|
this.configureButton.Location = new System.Drawing.Point(42, 107);
|
|
this.configureButton.Name = "configureButton";
|
|
this.configureButton.Size = new System.Drawing.Size(246, 33);
|
|
this.configureButton.TabIndex = 2;
|
|
this.configureButton.Text = "Configure test benches (password required)";
|
|
this.configureButton.UseVisualStyleBackColor = true;
|
|
this.configureButton.Click += new System.EventHandler(this.configureButton_Click);
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.ErrorImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.ErrorImage")));
|
|
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
|
this.pictureBox1.InitialImage = null;
|
|
this.pictureBox1.Location = new System.Drawing.Point(42, 21);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(32, 32);
|
|
this.pictureBox1.TabIndex = 3;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// errorMessageLabel
|
|
//
|
|
this.errorMessageLabel.AutoSize = true;
|
|
this.errorMessageLabel.Location = new System.Drawing.Point(80, 31);
|
|
this.errorMessageLabel.Name = "errorMessageLabel";
|
|
this.errorMessageLabel.Size = new System.Drawing.Size(160, 13);
|
|
this.errorMessageLabel.TabIndex = 4;
|
|
this.errorMessageLabel.Text = "Cannot connect to the database";
|
|
//
|
|
// NoBenchOrDatabaseDlg
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.exitButton;
|
|
this.ClientSize = new System.Drawing.Size(328, 194);
|
|
this.Controls.Add(this.errorMessageLabel);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.configureButton);
|
|
this.Controls.Add(this.retryButton);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Name = "NoBenchOrDatabaseDlg";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Error";
|
|
this.Load += new System.EventHandler(this.NoDatabaseMsgDlg_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button exitButton;
|
|
private System.Windows.Forms.Button retryButton;
|
|
private System.Windows.Forms.Button configureButton;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.Label errorMessageLabel;
|
|
}
|
|
} |