-
Notifications
You must be signed in to change notification settings - Fork 0
/
SensorForm.Designer.cs
87 lines (80 loc) · 3.49 KB
/
SensorForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
namespace ArduinoSocketClient
{
partial class SensorForm
{
/// <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.buttonConnect = new System.Windows.Forms.Button();
this.sensorOutput = new System.Windows.Forms.TextBox();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.SuspendLayout();
//
// buttonConnect
//
this.buttonConnect.Location = new System.Drawing.Point(297, 238);
this.buttonConnect.Name = "buttonConnect";
this.buttonConnect.Size = new System.Drawing.Size(107, 23);
this.buttonConnect.TabIndex = 0;
this.buttonConnect.Text = "&Request Data";
this.buttonConnect.UseVisualStyleBackColor = true;
this.buttonConnect.Click += new System.EventHandler(this.button1_Click);
//
// sensorOutput
//
this.sensorOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.sensorOutput.Location = new System.Drawing.Point(12, 12);
this.sensorOutput.Multiline = true;
this.sensorOutput.Name = "sensorOutput";
this.sensorOutput.Size = new System.Drawing.Size(392, 142);
this.sensorOutput.TabIndex = 1;
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(12, 160);
this.progressBar1.Maximum = 1023;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(392, 22);
this.progressBar1.TabIndex = 2;
//
// SensorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(416, 273);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.sensorOutput);
this.Controls.Add(this.buttonConnect);
this.Name = "SensorForm";
this.Text = "Sensor Test";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonConnect;
private System.Windows.Forms.TextBox sensorOutput;
private System.Windows.Forms.ProgressBar progressBar1;
}
}