1 namespace Projections
2 {
3     partial class AccumPanel
4     {
5         /// <summary>
6         /// Required designer variable.
7         /// </summary>
8         private System.ComponentModel.IContainer components = null;
9 
10         /// <summary>
11         /// Clean up any resources being used.
12         /// </summary>
13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Dispose(bool disposing)14         protected override void Dispose(bool disposing)
15         {
16             if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             base.Dispose(disposing);
21         }
22 
23         #region Component Designer generated code
24 
25         /// <summary>
26         /// Required method for Designer support - do not modify
27         /// the contents of this method with the code editor.
28         /// </summary>
InitializeComponent()29         private void InitializeComponent()
30         {
31             this.label1 = new System.Windows.Forms.Label();
32             this.m_inputTextBox = new System.Windows.Forms.TextBox();
33             this.label2 = new System.Windows.Forms.Label();
34             this.m_accumTtextBox = new System.Windows.Forms.TextBox();
35             this.button1 = new System.Windows.Forms.Button();
36             this.button2 = new System.Windows.Forms.Button();
37             this.button3 = new System.Windows.Forms.Button();
38             this.button4 = new System.Windows.Forms.Button();
39             this.m_equalsCheckBox = new System.Windows.Forms.CheckBox();
40             this.m_testTextBox = new System.Windows.Forms.TextBox();
41             this.m_lessThanCheckBox = new System.Windows.Forms.CheckBox();
42             this.m_greaterTanCheckBox = new System.Windows.Forms.CheckBox();
43             this.SuspendLayout();
44             //
45             // label1
46             //
47             this.label1.AutoSize = true;
48             this.label1.Location = new System.Drawing.Point(4, 8);
49             this.label1.Name = "label1";
50             this.label1.Size = new System.Drawing.Size(31, 13);
51             this.label1.TabIndex = 0;
52             this.label1.Text = "Input";
53             //
54             // m_inputTextBox
55             //
56             this.m_inputTextBox.Location = new System.Drawing.Point(109, 4);
57             this.m_inputTextBox.Name = "m_inputTextBox";
58             this.m_inputTextBox.Size = new System.Drawing.Size(202, 20);
59             this.m_inputTextBox.TabIndex = 1;
60             //
61             // label2
62             //
63             this.label2.AutoSize = true;
64             this.label2.Location = new System.Drawing.Point(4, 35);
65             this.label2.Name = "label2";
66             this.label2.Size = new System.Drawing.Size(99, 13);
67             this.label2.TabIndex = 2;
68             this.label2.Text = "Accumulated Value";
69             //
70             // m_accumTtextBox
71             //
72             this.m_accumTtextBox.Location = new System.Drawing.Point(109, 31);
73             this.m_accumTtextBox.Name = "m_accumTtextBox";
74             this.m_accumTtextBox.ReadOnly = true;
75             this.m_accumTtextBox.Size = new System.Drawing.Size(202, 20);
76             this.m_accumTtextBox.TabIndex = 3;
77             //
78             // button1
79             //
80             this.button1.Location = new System.Drawing.Point(317, 3);
81             this.button1.Name = "button1";
82             this.button1.Size = new System.Drawing.Size(75, 23);
83             this.button1.TabIndex = 4;
84             this.button1.Text = "Add";
85             this.button1.UseVisualStyleBackColor = true;
86             this.button1.Click += new System.EventHandler(this.OnAdd);
87             //
88             // button2
89             //
90             this.button2.Location = new System.Drawing.Point(7, 64);
91             this.button2.Name = "button2";
92             this.button2.Size = new System.Drawing.Size(75, 23);
93             this.button2.TabIndex = 5;
94             this.button2.Text = "Reset";
95             this.button2.UseVisualStyleBackColor = true;
96             this.button2.Click += new System.EventHandler(this.OnReset);
97             //
98             // button3
99             //
100             this.button3.Location = new System.Drawing.Point(318, 30);
101             this.button3.Name = "button3";
102             this.button3.Size = new System.Drawing.Size(75, 23);
103             this.button3.TabIndex = 6;
104             this.button3.Text = "Multiply";
105             this.button3.UseVisualStyleBackColor = true;
106             this.button3.Click += new System.EventHandler(this.OnMultiply);
107             //
108             // button4
109             //
110             this.button4.Location = new System.Drawing.Point(405, 32);
111             this.button4.Name = "button4";
112             this.button4.Size = new System.Drawing.Size(75, 23);
113             this.button4.TabIndex = 7;
114             this.button4.Text = "Test";
115             this.button4.UseVisualStyleBackColor = true;
116             this.button4.Click += new System.EventHandler(this.OnTest);
117             //
118             // m_equalsCheckBox
119             //
120             this.m_equalsCheckBox.AutoSize = true;
121             this.m_equalsCheckBox.Location = new System.Drawing.Point(405, 69);
122             this.m_equalsCheckBox.Name = "m_equalsCheckBox";
123             this.m_equalsCheckBox.Size = new System.Drawing.Size(58, 17);
124             this.m_equalsCheckBox.TabIndex = 8;
125             this.m_equalsCheckBox.Text = "Equals";
126             this.m_equalsCheckBox.UseVisualStyleBackColor = true;
127             //
128             // m_testTextBox
129             //
130             this.m_testTextBox.Location = new System.Drawing.Point(405, 4);
131             this.m_testTextBox.Name = "m_testTextBox";
132             this.m_testTextBox.Size = new System.Drawing.Size(139, 20);
133             this.m_testTextBox.TabIndex = 10;
134             //
135             // m_lessThanCheckBox
136             //
137             this.m_lessThanCheckBox.AutoSize = true;
138             this.m_lessThanCheckBox.Location = new System.Drawing.Point(405, 93);
139             this.m_lessThanCheckBox.Name = "m_lessThanCheckBox";
140             this.m_lessThanCheckBox.Size = new System.Drawing.Size(76, 17);
141             this.m_lessThanCheckBox.TabIndex = 11;
142             this.m_lessThanCheckBox.Text = "Less Than";
143             this.m_lessThanCheckBox.UseVisualStyleBackColor = true;
144             //
145             // m_greaterTanCheckBox
146             //
147             this.m_greaterTanCheckBox.AutoSize = true;
148             this.m_greaterTanCheckBox.Location = new System.Drawing.Point(405, 117);
149             this.m_greaterTanCheckBox.Name = "m_greaterTanCheckBox";
150             this.m_greaterTanCheckBox.Size = new System.Drawing.Size(86, 17);
151             this.m_greaterTanCheckBox.TabIndex = 12;
152             this.m_greaterTanCheckBox.Text = "GreaterThan";
153             this.m_greaterTanCheckBox.UseVisualStyleBackColor = true;
154             //
155             // AccumPanel
156             //
157             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
158             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
159             this.Controls.Add(this.m_greaterTanCheckBox);
160             this.Controls.Add(this.m_lessThanCheckBox);
161             this.Controls.Add(this.m_testTextBox);
162             this.Controls.Add(this.m_equalsCheckBox);
163             this.Controls.Add(this.button4);
164             this.Controls.Add(this.button3);
165             this.Controls.Add(this.button2);
166             this.Controls.Add(this.button1);
167             this.Controls.Add(this.m_accumTtextBox);
168             this.Controls.Add(this.label2);
169             this.Controls.Add(this.m_inputTextBox);
170             this.Controls.Add(this.label1);
171             this.Name = "AccumPanel";
172             this.Size = new System.Drawing.Size(969, 353);
173             this.ResumeLayout(false);
174             this.PerformLayout();
175 
176         }
177 
178         #endregion
179 
180         private System.Windows.Forms.Label label1;
181         private System.Windows.Forms.TextBox m_inputTextBox;
182         private System.Windows.Forms.Label label2;
183         private System.Windows.Forms.TextBox m_accumTtextBox;
184         private System.Windows.Forms.Button button1;
185         private System.Windows.Forms.Button button2;
186         private System.Windows.Forms.Button button3;
187         private System.Windows.Forms.Button button4;
188         private System.Windows.Forms.CheckBox m_equalsCheckBox;
189         private System.Windows.Forms.TextBox m_testTextBox;
190         private System.Windows.Forms.CheckBox m_lessThanCheckBox;
191         private System.Windows.Forms.CheckBox m_greaterTanCheckBox;
192     }
193 }
194