tbf/TBF/UiControls/TestProgressCtrl.Designer.cs

77 lines
2.4 KiB
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
namespace TBF.UiControls
{
partial class TestProgressCtrl
{
/// <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 Component 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.testNameLabel = new System.Windows.Forms.Label();
this.testProgressBar = new System.Windows.Forms.ProgressBar();
this.SuspendLayout();
//
// testNameLabel
//
this.testNameLabel.AutoSize = true;
this.testNameLabel.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.testNameLabel.Location = new System.Drawing.Point(3, 5);
this.testNameLabel.Name = "testNameLabel";
this.testNameLabel.Size = new System.Drawing.Size(51, 18);
this.testNameLabel.TabIndex = 0;
this.testNameLabel.Text = "label1";
this.testNameLabel.Click += new System.EventHandler(this.TestProgressCtrl_Click);
//
// testProgressBar
//
this.testProgressBar.Location = new System.Drawing.Point(105, 2);
this.testProgressBar.Name = "testProgressBar";
this.testProgressBar.Size = new System.Drawing.Size(100, 25);
this.testProgressBar.TabIndex = 1;
this.testProgressBar.Click += new System.EventHandler(this.TestProgressCtrl_Click);
//
// TestProgressCtrl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.testProgressBar);
this.Controls.Add(this.testNameLabel);
this.Name = "TestProgressCtrl";
this.Size = new System.Drawing.Size(207, 29);
this.Click += new System.EventHandler(this.TestProgressCtrl_Click);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label testNameLabel;
private System.Windows.Forms.ProgressBar testProgressBar;
}
}