common/Ui/LegacyGenesisControl/TestForm.Designer.cs
2026-04-23 17:50:07 +02:00

245 lines
11 KiB
C#

namespace LegacyGenesisControl
{
partial class TestForm
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.rbFlowCalibration = new System.Windows.Forms.RadioButton();
this.rbMeasurement = new System.Windows.Forms.RadioButton();
this.btnDisconnect = new System.Windows.Forms.Button();
this.btnLogin = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.btnInit = new System.Windows.Forms.Button();
this.cblSlots = new System.Windows.Forms.CheckedListBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.btnUpdate = new System.Windows.Forms.Button();
this.btnMeasurementStop = new System.Windows.Forms.Button();
this.btnMeasurementPreparation = new System.Windows.Forms.Button();
this.btnMeasurementStart = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.rbFlowCalibration);
this.groupBox1.Controls.Add(this.rbMeasurement);
this.groupBox1.Controls.Add(this.btnDisconnect);
this.groupBox1.Controls.Add(this.btnLogin);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.btnInit);
this.groupBox1.Controls.Add(this.cblSlots);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(425, 105);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Connection";
//
// rbFlowCalibration
//
this.rbFlowCalibration.AutoSize = true;
this.rbFlowCalibration.Location = new System.Drawing.Point(100, 63);
this.rbFlowCalibration.Name = "rbFlowCalibration";
this.rbFlowCalibration.Size = new System.Drawing.Size(99, 17);
this.rbFlowCalibration.TabIndex = 10;
this.rbFlowCalibration.Text = "Flow Calibration";
this.rbFlowCalibration.UseVisualStyleBackColor = true;
//
// rbMeasurement
//
this.rbMeasurement.AutoSize = true;
this.rbMeasurement.Checked = true;
this.rbMeasurement.Location = new System.Drawing.Point(9, 63);
this.rbMeasurement.Name = "rbMeasurement";
this.rbMeasurement.Size = new System.Drawing.Size(89, 17);
this.rbMeasurement.TabIndex = 9;
this.rbMeasurement.TabStop = true;
this.rbMeasurement.Text = "Measurement";
this.rbMeasurement.UseVisualStyleBackColor = true;
//
// btnDisconnect
//
this.btnDisconnect.Location = new System.Drawing.Point(216, 55);
this.btnDisconnect.Name = "btnDisconnect";
this.btnDisconnect.Size = new System.Drawing.Size(192, 32);
this.btnDisconnect.TabIndex = 8;
this.btnDisconnect.Text = "Disconnect";
this.btnDisconnect.UseVisualStyleBackColor = true;
this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
//
// btnLogin
//
this.btnLogin.Location = new System.Drawing.Point(315, 13);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(94, 33);
this.btnLogin.TabIndex = 7;
this.btnLogin.Text = "Login";
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(36, 13);
this.label1.TabIndex = 6;
this.label1.Text = "Slot(s)";
//
// btnInit
//
this.btnInit.Location = new System.Drawing.Point(215, 13);
this.btnInit.Name = "btnInit";
this.btnInit.Size = new System.Drawing.Size(94, 33);
this.btnInit.TabIndex = 5;
this.btnInit.Text = "Init";
this.btnInit.UseVisualStyleBackColor = true;
this.btnInit.Click += new System.EventHandler(this.btnInit_Click);
//
// cblSlots
//
this.cblSlots.FormattingEnabled = true;
this.cblSlots.Location = new System.Drawing.Point(48, 19);
this.cblSlots.Name = "cblSlots";
this.cblSlots.Size = new System.Drawing.Size(114, 34);
this.cblSlots.TabIndex = 4;
this.cblSlots.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cblSlots_ItemCheck);
this.cblSlots.SelectedIndexChanged += new System.EventHandler(this.cblSlots_SelectedIndexChanged);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.textBox1);
this.groupBox2.Controls.Add(this.btnUpdate);
this.groupBox2.Controls.Add(this.btnMeasurementStop);
this.groupBox2.Controls.Add(this.btnMeasurementPreparation);
this.groupBox2.Controls.Add(this.btnMeasurementStart);
this.groupBox2.Location = new System.Drawing.Point(443, 12);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(508, 105);
this.groupBox2.TabIndex = 10;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Control";
//
// btnUpdate
//
this.btnUpdate.Location = new System.Drawing.Point(188, 19);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(77, 80);
this.btnUpdate.TabIndex = 9;
this.btnUpdate.Text = "Update";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// btnMeasurementStop
//
this.btnMeasurementStop.Location = new System.Drawing.Point(392, 13);
this.btnMeasurementStop.Name = "btnMeasurementStop";
this.btnMeasurementStop.Size = new System.Drawing.Size(65, 80);
this.btnMeasurementStop.TabIndex = 8;
this.btnMeasurementStop.Text = "Stop";
this.btnMeasurementStop.UseVisualStyleBackColor = true;
this.btnMeasurementStop.Click += new System.EventHandler(this.btnMeasurementStop_Click);
//
// btnMeasurementPreparation
//
this.btnMeasurementPreparation.Location = new System.Drawing.Point(21, 19);
this.btnMeasurementPreparation.Name = "btnMeasurementPreparation";
this.btnMeasurementPreparation.Size = new System.Drawing.Size(78, 80);
this.btnMeasurementPreparation.TabIndex = 6;
this.btnMeasurementPreparation.Text = "Preparation";
this.btnMeasurementPreparation.UseVisualStyleBackColor = true;
this.btnMeasurementPreparation.Click += new System.EventHandler(this.btnMeasurementPreparation_Click);
//
// btnMeasurementStart
//
this.btnMeasurementStart.Location = new System.Drawing.Point(105, 19);
this.btnMeasurementStart.Name = "btnMeasurementStart";
this.btnMeasurementStart.Size = new System.Drawing.Size(77, 80);
this.btnMeasurementStart.TabIndex = 7;
this.btnMeasurementStart.Text = "Start";
this.btnMeasurementStart.UseVisualStyleBackColor = true;
this.btnMeasurementStart.Click += new System.EventHandler(this.btnMeasurementStart_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 132);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(766, 30);
this.button1.TabIndex = 11;
this.button1.Text = "show Control";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(284, 36);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(97, 20);
this.textBox1.TabIndex = 10;
//
// TestForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1378, 335);
this.Controls.Add(this.button1);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "TestForm";
this.Text = "TestForm";
this.Load += new System.EventHandler(this.TestForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton rbFlowCalibration;
private System.Windows.Forms.RadioButton rbMeasurement;
private System.Windows.Forms.Button btnDisconnect;
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnInit;
private System.Windows.Forms.CheckedListBox cblSlots;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button btnUpdate;
private System.Windows.Forms.Button btnMeasurementStop;
private System.Windows.Forms.Button btnMeasurementPreparation;
private System.Windows.Forms.Button btnMeasurementStart;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
}
}