129 lines
5.1 KiB
C#
129 lines
5.1 KiB
C#
namespace GenesisToolBox
|
|
{
|
|
partial class FrmCalibrationInput
|
|
{
|
|
/// <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.btnOk = new System.Windows.Forms.Button();
|
|
this.nudVol = new System.Windows.Forms.NumericUpDown();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.nudTime = new System.Windows.Forms.NumericUpDown();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.nudVol)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.nudTime)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.Location = new System.Drawing.Point(217, 45);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(89, 35);
|
|
this.btnOk.TabIndex = 0;
|
|
this.btnOk.Text = "Ok";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// nudVol
|
|
//
|
|
this.nudVol.DecimalPlaces = 9;
|
|
this.nudVol.Location = new System.Drawing.Point(6, 60);
|
|
this.nudVol.Name = "nudVol";
|
|
this.nudVol.Size = new System.Drawing.Size(87, 20);
|
|
this.nudVol.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(3, 44);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(56, 13);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Volume m³";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(124, 44);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(86, 13);
|
|
this.label2.TabIndex = 4;
|
|
this.label2.Text = "Time in Seconds";
|
|
//
|
|
// nudTime
|
|
//
|
|
this.nudTime.Location = new System.Drawing.Point(123, 60);
|
|
this.nudTime.Name = "nudTime";
|
|
this.nudTime.Size = new System.Drawing.Size(87, 20);
|
|
this.nudTime.TabIndex = 3;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(3, 21);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(303, 13);
|
|
this.label3.TabIndex = 5;
|
|
this.label3.Text = "Put in the Volume and Time (Optional) from Ref. Meter or Scale";
|
|
//
|
|
// FrmCalibrationInput
|
|
//
|
|
this.AcceptButton = this.btnOk;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(317, 90);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.nudTime);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.nudVol);
|
|
this.Controls.Add(this.btnOk);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MaximumSize = new System.Drawing.Size(333, 128);
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(333, 128);
|
|
this.Name = "FrmCalibrationInput";
|
|
this.Text = "Ref. value input";
|
|
this.TopMost = true;
|
|
((System.ComponentModel.ISupportInitialize)(this.nudVol)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.nudTime)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.NumericUpDown nudVol;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.NumericUpDown nudTime;
|
|
private System.Windows.Forms.Label label3;
|
|
}
|
|
} |