tbf/TBF/AboutDlg.Designer.cs

120 lines
5.1 KiB
C#
Raw Permalink Normal View History

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
namespace TestBenchFramework
{
partial class AboutDlg
{
/// <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.copyrightLabel = new System.Windows.Forms.Label();
this.versionLabel = new System.Windows.Forms.Label();
this.buildDateLabel = new System.Windows.Forms.Label();
this.closeButton = new System.Windows.Forms.Button();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// copyrightLabel
//
this.copyrightLabel.AutoSize = true;
this.copyrightLabel.Location = new System.Drawing.Point(145, 19);
this.copyrightLabel.Name = "copyrightLabel";
this.copyrightLabel.Size = new System.Drawing.Size(90, 13);
this.copyrightLabel.TabIndex = 4;
this.copyrightLabel.Text = "Copyright <20> 2013";
//
// versionLabel
//
this.versionLabel.AutoSize = true;
this.versionLabel.Location = new System.Drawing.Point(145, 41);
this.versionLabel.Name = "versionLabel";
this.versionLabel.Size = new System.Drawing.Size(105, 13);
this.versionLabel.TabIndex = 5;
this.versionLabel.Text = "Version _VERSION_";
//
// buildDateLabel
//
this.buildDateLabel.AutoSize = true;
this.buildDateLabel.Location = new System.Drawing.Point(145, 64);
this.buildDateLabel.Name = "buildDateLabel";
this.buildDateLabel.Size = new System.Drawing.Size(136, 13);
this.buildDateLabel.TabIndex = 6;
this.buildDateLabel.Text = "Build date _BUILD_DATE_";
//
// closeButton
//
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.closeButton.Location = new System.Drawing.Point(341, 36);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(105, 28);
this.closeButton.TabIndex = 11;
this.closeButton.Text = "&Close";
this.closeButton.UseVisualStyleBackColor = true;
//
// logoPictureBox
//
this.logoPictureBox.BackgroundImage = global::TestBenchFramework.Properties.Resources.sensus_logo;
this.logoPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.logoPictureBox.InitialImage = null;
this.logoPictureBox.Location = new System.Drawing.Point(12, 34);
this.logoPictureBox.Name = "logoPictureBox";
this.logoPictureBox.Size = new System.Drawing.Size(103, 30);
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// AboutDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(458, 99);
this.Controls.Add(this.logoPictureBox);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.buildDateLabel);
this.Controls.Add(this.versionLabel);
this.Controls.Add(this.copyrightLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "AboutDlg";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About Test Bench Framework";
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label copyrightLabel;
private System.Windows.Forms.Label versionLabel;
private System.Windows.Forms.Label buildDateLabel;
private System.Windows.Forms.Button closeButton;
private System.Windows.Forms.PictureBox logoPictureBox;
}
}