Skip to content
Snippets Groups Projects
Commit 45d1cf29 authored by Stephen D's avatar Stephen D
Browse files

Added proper names to controller forms

parent 485480c9
No related branches found
Tags 1.1
No related merge requests found
......@@ -112,7 +112,7 @@
this.Controls.Add(this.forward);
this.KeyPreview = true;
this.Name = "Form1";
this.Text = "Form1";
this.Text = "Robot Controller - Arrow Keys";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Form1_KeyPress);
......
......@@ -28,8 +28,7 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.joyTick = new System.Windows.Forms.Timer(this.components);
this.joyTick = new System.Windows.Forms.Timer();
this.leftWheelLabel = new System.Windows.Forms.Label();
this.rightWheelLabel = new System.Windows.Forms.Label();
this.lightToggle = new System.Windows.Forms.Button();
......@@ -88,7 +87,7 @@
this.Controls.Add(this.rightWheelLabel);
this.Controls.Add(this.leftWheelLabel);
this.Name = "Form1";
this.Text = "Form1";
this.Text = "Robot Controller - Military Drive";
this.ResumeLayout(false);
this.PerformLayout();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment