tbf/DeviceTest/DeviceTestDlg.Designer.cs
2016-10-11 16:57:53 +02:00

135 lines
5.6 KiB
C#

namespace DeviceTest
{
partial class DeviceTestDlg
{
/// <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.classNameComboBox = new System.Windows.Forms.ComboBox();
this.classLabel = new System.Windows.Forms.Label();
this.nameLabel = new System.Windows.Forms.Label();
this.nameTextBox = new System.Windows.Forms.TextBox();
this.configureButton = new System.Windows.Forms.Button();
this.startButton = new System.Windows.Forms.Button();
this.stopButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// classNameComboBox
//
this.classNameComboBox.FormattingEnabled = true;
this.classNameComboBox.Location = new System.Drawing.Point(100, 29);
this.classNameComboBox.Name = "classNameComboBox";
this.classNameComboBox.Size = new System.Drawing.Size(299, 21);
this.classNameComboBox.TabIndex = 0;
//
// classLabel
//
this.classLabel.AutoSize = true;
this.classLabel.Location = new System.Drawing.Point(34, 32);
this.classLabel.Name = "classLabel";
this.classLabel.Size = new System.Drawing.Size(32, 13);
this.classLabel.TabIndex = 1;
this.classLabel.Text = "Class";
//
// nameLabel
//
this.nameLabel.AutoSize = true;
this.nameLabel.Location = new System.Drawing.Point(34, 69);
this.nameLabel.Name = "nameLabel";
this.nameLabel.Size = new System.Drawing.Size(35, 13);
this.nameLabel.TabIndex = 2;
this.nameLabel.Text = "Name";
//
// nameTextBox
//
this.nameTextBox.Location = new System.Drawing.Point(100, 66);
this.nameTextBox.Name = "nameTextBox";
this.nameTextBox.Size = new System.Drawing.Size(299, 20);
this.nameTextBox.TabIndex = 3;
//
// configureButton
//
this.configureButton.Location = new System.Drawing.Point(100, 104);
this.configureButton.Name = "configureButton";
this.configureButton.Size = new System.Drawing.Size(129, 28);
this.configureButton.TabIndex = 4;
this.configureButton.Text = "Configure";
this.configureButton.UseVisualStyleBackColor = true;
this.configureButton.Click += new System.EventHandler(this.configureButton_Click);
//
// startButton
//
this.startButton.Location = new System.Drawing.Point(100, 138);
this.startButton.Name = "startButton";
this.startButton.Size = new System.Drawing.Size(129, 28);
this.startButton.TabIndex = 5;
this.startButton.Text = "Start device";
this.startButton.UseVisualStyleBackColor = true;
this.startButton.Click += new System.EventHandler(this.startButton_Click);
//
// stopButton
//
this.stopButton.Location = new System.Drawing.Point(100, 172);
this.stopButton.Name = "stopButton";
this.stopButton.Size = new System.Drawing.Size(129, 28);
this.stopButton.TabIndex = 6;
this.stopButton.Text = "Stop device";
this.stopButton.UseVisualStyleBackColor = true;
this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
//
// DeviceTestDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(450, 262);
this.Controls.Add(this.stopButton);
this.Controls.Add(this.startButton);
this.Controls.Add(this.configureButton);
this.Controls.Add(this.nameTextBox);
this.Controls.Add(this.nameLabel);
this.Controls.Add(this.classLabel);
this.Controls.Add(this.classNameComboBox);
this.Name = "DeviceTestDlg";
this.Text = "Device test";
this.Load += new System.EventHandler(this.DeviceTestDlg_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox classNameComboBox;
private System.Windows.Forms.Label classLabel;
private System.Windows.Forms.Label nameLabel;
private System.Windows.Forms.TextBox nameTextBox;
private System.Windows.Forms.Button configureButton;
private System.Windows.Forms.Button startButton;
private System.Windows.Forms.Button stopButton;
}
}