-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainForm.Designer.cs
171 lines (163 loc) · 8.53 KB
/
mainForm.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
namespace PingPongPower
{
partial class MainForm
{
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.mainMenuToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newTargetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
this.targetControl1 = new PingPongPower.targetControl();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mainMenuToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(415, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// mainMenuToolStripMenuItem
//
this.mainMenuToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newTargetToolStripMenuItem,
this.settingsToolStripMenuItem,
this.toolStripSeparator1,
this.aboutToolStripMenuItem});
this.mainMenuToolStripMenuItem.Name = "mainMenuToolStripMenuItem";
this.mainMenuToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
this.mainMenuToolStripMenuItem.Text = "&Main";
//
// newTargetToolStripMenuItem
//
this.newTargetToolStripMenuItem.Name = "newTargetToolStripMenuItem";
this.newTargetToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
this.newTargetToolStripMenuItem.Text = "&New Target";
this.newTargetToolStripMenuItem.Click += new System.EventHandler(this.NewTargetToolStripMenuItem_Click);
//
// settingsToolStripMenuItem
//
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
this.settingsToolStripMenuItem.Text = "Settings";
this.settingsToolStripMenuItem.Click += new System.EventHandler(this.SettingsToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(132, 6);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
this.aboutToolStripMenuItem.Text = "Exit";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem1});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "Help";
//
// aboutToolStripMenuItem1
//
this.aboutToolStripMenuItem1.Name = "aboutToolStripMenuItem1";
this.aboutToolStripMenuItem1.Size = new System.Drawing.Size(107, 22);
this.aboutToolStripMenuItem1.Text = "About";
this.aboutToolStripMenuItem1.Click += new System.EventHandler(this.AboutToolStripMenuItem1_Click);
//
// chart1
//
this.chart1.Dock = System.Windows.Forms.DockStyle.Top;
this.chart1.Location = new System.Drawing.Point(0, 24);
this.chart1.Name = "chart1";
this.chart1.Size = new System.Drawing.Size(415, 107);
this.chart1.TabIndex = 2;
this.chart1.Text = "chart1";
this.chart1.Click += new System.EventHandler(this.Chart1Click);
//
// targetControl1
//
this.targetControl1.AutoSize = true;
this.targetControl1.Dock = System.Windows.Forms.DockStyle.Top;
this.targetControl1.Location = new System.Drawing.Point(0, 131);
this.targetControl1.Name = "targetControl1";
this.targetControl1.Size = new System.Drawing.Size(415, 97);
this.targetControl1.TabIndex = 3;
this.targetControl1.targetResponseEvent += new PingPongPower.targetControl.targetResponseHandler(this.TargetResponseRoutine);
//
// mainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.AutoSize = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(415, 228);
this.Controls.Add(this.targetControl1);
this.Controls.Add(this.chart1);
this.Controls.Add(this.menuStrip1);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(425, 750);
this.MinimumSize = new System.Drawing.Size(425, 100);
this.Name = "mainForm";
this.Text = "PingPongPower";
this.Load += new System.EventHandler(this.MainFormLoad);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private PingPongPower.targetControl targetControl1;
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem mainMenuToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem newTargetToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem1;
}
}