153 lines
5.7 KiB
C#
153 lines
5.7 KiB
C#
namespace Kaehler.scr
|
|
{
|
|
partial class SetupForm
|
|
{
|
|
/// <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()
|
|
{
|
|
button1 = new System.Windows.Forms.Button();
|
|
textBox1 = new System.Windows.Forms.TextBox();
|
|
trackBar1 = new System.Windows.Forms.TrackBar();
|
|
label1 = new System.Windows.Forms.Label();
|
|
label2 = new System.Windows.Forms.Label();
|
|
trackBar2 = new System.Windows.Forms.TrackBar();
|
|
textBox2 = new System.Windows.Forms.TextBox();
|
|
label3 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)trackBar1).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)trackBar2).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new System.Drawing.Point(405, 166);
|
|
button1.Name = "button1";
|
|
button1.Size = new System.Drawing.Size(89, 29);
|
|
button1.TabIndex = 0;
|
|
button1.Text = "OK";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += button1_Click;
|
|
//
|
|
// textBox1
|
|
//
|
|
textBox1.Location = new System.Drawing.Point(86, 54);
|
|
textBox1.Name = "textBox1";
|
|
textBox1.Size = new System.Drawing.Size(35, 23);
|
|
textBox1.TabIndex = 1;
|
|
textBox1.TextChanged += textBox1_TextChanged;
|
|
//
|
|
// trackBar1
|
|
//
|
|
trackBar1.Location = new System.Drawing.Point(50, 80);
|
|
trackBar1.Maximum = 300;
|
|
trackBar1.Minimum = 5;
|
|
trackBar1.Name = "trackBar1";
|
|
trackBar1.Size = new System.Drawing.Size(97, 45);
|
|
trackBar1.TabIndex = 2;
|
|
trackBar1.Value = 5;
|
|
trackBar1.Scroll += trackBar1_Scroll;
|
|
trackBar1.Move += trackBar1_Move;
|
|
//
|
|
// label1
|
|
//
|
|
label1.Location = new System.Drawing.Point(12, 56);
|
|
label1.Name = "label1";
|
|
label1.Size = new System.Drawing.Size(68, 21);
|
|
label1.TabIndex = 3;
|
|
label1.Text = "Grundwert";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new System.Drawing.Point(147, 54);
|
|
label2.Name = "label2";
|
|
label2.Size = new System.Drawing.Size(74, 15);
|
|
label2.TabIndex = 4;
|
|
label2.Text = "Abweichung";
|
|
//
|
|
// trackBar2
|
|
//
|
|
trackBar2.Location = new System.Drawing.Point(204, 80);
|
|
trackBar2.Maximum = 15;
|
|
trackBar2.Minimum = 5;
|
|
trackBar2.Name = "trackBar2";
|
|
trackBar2.Size = new System.Drawing.Size(83, 45);
|
|
trackBar2.TabIndex = 5;
|
|
trackBar2.Value = 5;
|
|
trackBar2.Scroll += trackBar2_Scroll;
|
|
trackBar2.Move += trackBar2_Move;
|
|
//
|
|
// textBox2
|
|
//
|
|
textBox2.Location = new System.Drawing.Point(227, 53);
|
|
textBox2.Name = "textBox2";
|
|
textBox2.Size = new System.Drawing.Size(38, 23);
|
|
textBox2.TabIndex = 6;
|
|
textBox2.TextChanged += textBox2_TextChanged;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new System.Drawing.Point(12, 19);
|
|
label3.Name = "label3";
|
|
label3.Size = new System.Drawing.Size(86, 15);
|
|
label3.TabIndex = 7;
|
|
label3.Text = "Wechsel-Timer";
|
|
//
|
|
// SetupForm
|
|
//
|
|
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
ClientSize = new System.Drawing.Size(526, 217);
|
|
Controls.Add(label3);
|
|
Controls.Add(textBox2);
|
|
Controls.Add(trackBar2);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Controls.Add(trackBar1);
|
|
Controls.Add(textBox1);
|
|
Controls.Add(button1);
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "SetupForm";
|
|
Text = "Setup";
|
|
((System.ComponentModel.ISupportInitialize)trackBar1).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)trackBar2).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.TrackBar trackBar1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TrackBar trackBar2;
|
|
private System.Windows.Forms.TextBox textBox2;
|
|
private System.Windows.Forms.Label label3;
|
|
}
|
|
} |