[X] Testprogramm 11 (Watchdog, Vorteiler)

This commit is contained in:
2017-05-16 17:52:02 +02:00
parent 405b82d086
commit d4a9569693
7 changed files with 78 additions and 50 deletions

View File

@@ -110,8 +110,9 @@
this.btnClockStart = new System.Windows.Forms.Button();
this.edCLockFreq = new System.Windows.Forms.TextBox();
this.WakeUpButton = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.btnWD1 = new System.Windows.Forms.Button();
this.btnWD0 = new System.Windows.Forms.Button();
this.tbWD = new System.Windows.Forms.TextBox();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
@@ -835,33 +836,42 @@
this.WakeUpButton.UseVisualStyleBackColor = true;
this.WakeUpButton.Click += new System.EventHandler(this.button1_Click);
//
// button1
// btnWD1
//
this.button1.Location = new System.Drawing.Point(341, 18);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(126, 23);
this.button1.TabIndex = 64;
this.button1.Text = "Watchdog An";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click_1);
this.btnWD1.Location = new System.Drawing.Point(341, 18);
this.btnWD1.Name = "btnWD1";
this.btnWD1.Size = new System.Drawing.Size(126, 23);
this.btnWD1.TabIndex = 64;
this.btnWD1.Text = "Watchdog An";
this.btnWD1.UseVisualStyleBackColor = true;
this.btnWD1.Click += new System.EventHandler(this.button1_Click_1);
//
// button2
// btnWD0
//
this.button2.Location = new System.Drawing.Point(341, 48);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(126, 23);
this.button2.TabIndex = 65;
this.button2.Text = "Watchdog Aus";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
this.btnWD0.Location = new System.Drawing.Point(341, 48);
this.btnWD0.Name = "btnWD0";
this.btnWD0.Size = new System.Drawing.Size(126, 23);
this.btnWD0.TabIndex = 65;
this.btnWD0.Text = "Watchdog Aus";
this.btnWD0.UseVisualStyleBackColor = true;
this.btnWD0.Click += new System.EventHandler(this.button2_Click);
//
// tbWD
//
this.tbWD.Location = new System.Drawing.Point(474, 18);
this.tbWD.Name = "tbWD";
this.tbWD.Size = new System.Drawing.Size(58, 20);
this.tbWD.TabIndex = 66;
this.tbWD.Text = "18.0";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1298, 692);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.tbWD);
this.Controls.Add(this.btnWD0);
this.Controls.Add(this.btnWD1);
this.Controls.Add(this.WakeUpButton);
this.Controls.Add(this.edCLockFreq);
this.Controls.Add(this.btnClockStart);
@@ -1015,8 +1025,9 @@
private System.Windows.Forms.Button btnClockStart;
private System.Windows.Forms.TextBox edCLockFreq;
private System.Windows.Forms.Button WakeUpButton;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
}
private System.Windows.Forms.Button btnWD1;
private System.Windows.Forms.Button btnWD0;
private System.Windows.Forms.TextBox tbWD;
}
}