-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.vb
262 lines (257 loc) · 10.4 KB
/
MainForm.Designer.vb
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class MainForm
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
Me.inputPanel = New System.Windows.Forms.Panel()
Me.Label1 = New System.Windows.Forms.Label()
Me.connectPointsCheckbox = New System.Windows.Forms.CheckBox()
Me.pointCountLabel = New System.Windows.Forms.Label()
Me.pointCountInput = New System.Windows.Forms.NumericUpDown()
Me.goButton = New System.Windows.Forms.Button()
Me.stepSizeLabel = New System.Windows.Forms.Label()
Me.stepSizeInput = New System.Windows.Forms.NumericUpDown()
Me.initialXInput = New System.Windows.Forms.NumericUpDown()
Me.initialXLabel = New System.Windows.Forms.Label()
Me.initialTLabel = New System.Windows.Forms.Label()
Me.initialTInput = New System.Windows.Forms.NumericUpDown()
Me.initialValuesLabel = New System.Windows.Forms.Label()
Me.derivativeFunctionInput = New System.Windows.Forms.TextBox()
Me.derivativeFunctionLabel = New System.Windows.Forms.Label()
Me.plotView = New OxyPlot.WindowsForms.PlotView()
Me.showDotsCheckbox = New System.Windows.Forms.CheckBox()
Me.inputPanel.SuspendLayout()
CType(Me.pointCountInput, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.stepSizeInput, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.initialXInput, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.initialTInput, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'inputPanel
'
Me.inputPanel.BackColor = System.Drawing.SystemColors.Control
Me.inputPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.inputPanel.Controls.Add(Me.showDotsCheckbox)
Me.inputPanel.Controls.Add(Me.Label1)
Me.inputPanel.Controls.Add(Me.connectPointsCheckbox)
Me.inputPanel.Controls.Add(Me.pointCountLabel)
Me.inputPanel.Controls.Add(Me.pointCountInput)
Me.inputPanel.Controls.Add(Me.goButton)
Me.inputPanel.Controls.Add(Me.stepSizeLabel)
Me.inputPanel.Controls.Add(Me.stepSizeInput)
Me.inputPanel.Controls.Add(Me.initialXInput)
Me.inputPanel.Controls.Add(Me.initialXLabel)
Me.inputPanel.Controls.Add(Me.initialTLabel)
Me.inputPanel.Controls.Add(Me.initialTInput)
Me.inputPanel.Controls.Add(Me.initialValuesLabel)
Me.inputPanel.Controls.Add(Me.derivativeFunctionInput)
Me.inputPanel.Controls.Add(Me.derivativeFunctionLabel)
Me.inputPanel.Dock = System.Windows.Forms.DockStyle.Top
Me.inputPanel.Location = New System.Drawing.Point(0, 0)
Me.inputPanel.Name = "inputPanel"
Me.inputPanel.Size = New System.Drawing.Size(1378, 193)
Me.inputPanel.TabIndex = 0
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(43, 114)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(106, 50)
Me.Label1.TabIndex = 13
Me.Label1.Text = "Of the form" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "dx/dt=f(x,t)"
'
'connectPointsCheckbox
'
Me.connectPointsCheckbox.AutoSize = True
Me.connectPointsCheckbox.Location = New System.Drawing.Point(533, 124)
Me.connectPointsCheckbox.Name = "connectPointsCheckbox"
Me.connectPointsCheckbox.Size = New System.Drawing.Size(158, 29)
Me.connectPointsCheckbox.TabIndex = 12
Me.connectPointsCheckbox.Text = "Connect points"
Me.connectPointsCheckbox.UseVisualStyleBackColor = True
'
'pointCountLabel
'
Me.pointCountLabel.AutoSize = True
Me.pointCountLabel.Location = New System.Drawing.Point(730, 34)
Me.pointCountLabel.Name = "pointCountLabel"
Me.pointCountLabel.Size = New System.Drawing.Size(158, 25)
Me.pointCountLabel.TabIndex = 11
Me.pointCountLabel.Text = "Number of points:"
'
'pointCountInput
'
Me.pointCountInput.Location = New System.Drawing.Point(730, 71)
Me.pointCountInput.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
Me.pointCountInput.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
Me.pointCountInput.Name = "pointCountInput"
Me.pointCountInput.Size = New System.Drawing.Size(128, 31)
Me.pointCountInput.TabIndex = 10
Me.pointCountInput.Value = New Decimal(New Integer() {1, 0, 0, 0})
'
'goButton
'
Me.goButton.Location = New System.Drawing.Point(927, 65)
Me.goButton.Name = "goButton"
Me.goButton.Size = New System.Drawing.Size(179, 83)
Me.goButton.TabIndex = 9
Me.goButton.Text = "Go!"
Me.goButton.UseVisualStyleBackColor = True
'
'stepSizeLabel
'
Me.stepSizeLabel.AutoSize = True
Me.stepSizeLabel.Location = New System.Drawing.Point(550, 34)
Me.stepSizeLabel.Name = "stepSizeLabel"
Me.stepSizeLabel.Size = New System.Drawing.Size(85, 25)
Me.stepSizeLabel.TabIndex = 8
Me.stepSizeLabel.Text = "Step size:"
'
'stepSizeInput
'
Me.stepSizeInput.DecimalPlaces = 4
Me.stepSizeInput.Location = New System.Drawing.Point(550, 71)
Me.stepSizeInput.Name = "stepSizeInput"
Me.stepSizeInput.Size = New System.Drawing.Size(128, 31)
Me.stepSizeInput.TabIndex = 7
'
'initialXInput
'
Me.initialXInput.DecimalPlaces = 4
Me.initialXInput.Location = New System.Drawing.Point(362, 123)
Me.initialXInput.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0})
Me.initialXInput.Minimum = New Decimal(New Integer() {1000000, 0, 0, -2147483648})
Me.initialXInput.Name = "initialXInput"
Me.initialXInput.Size = New System.Drawing.Size(131, 31)
Me.initialXInput.TabIndex = 6
'
'initialXLabel
'
Me.initialXLabel.AutoSize = True
Me.initialXLabel.Location = New System.Drawing.Point(332, 123)
Me.initialXLabel.Name = "initialXLabel"
Me.initialXLabel.Size = New System.Drawing.Size(24, 25)
Me.initialXLabel.TabIndex = 5
Me.initialXLabel.Text = "x:"
'
'initialTLabel
'
Me.initialTLabel.AutoSize = True
Me.initialTLabel.Location = New System.Drawing.Point(332, 71)
Me.initialTLabel.Name = "initialTLabel"
Me.initialTLabel.Size = New System.Drawing.Size(22, 25)
Me.initialTLabel.TabIndex = 4
Me.initialTLabel.Text = "t:"
'
'initialTInput
'
Me.initialTInput.DecimalPlaces = 4
Me.initialTInput.Location = New System.Drawing.Point(362, 71)
Me.initialTInput.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0})
Me.initialTInput.Minimum = New Decimal(New Integer() {1000000, 0, 0, -2147483648})
Me.initialTInput.Name = "initialTInput"
Me.initialTInput.Size = New System.Drawing.Size(131, 31)
Me.initialTInput.TabIndex = 3
'
'initialValuesLabel
'
Me.initialValuesLabel.AutoSize = True
Me.initialValuesLabel.Location = New System.Drawing.Point(332, 34)
Me.initialValuesLabel.Name = "initialValuesLabel"
Me.initialValuesLabel.Size = New System.Drawing.Size(112, 25)
Me.initialValuesLabel.TabIndex = 2
Me.initialValuesLabel.Text = "Initial values:"
'
'derivativeFunctionInput
'
Me.derivativeFunctionInput.Location = New System.Drawing.Point(43, 68)
Me.derivativeFunctionInput.Name = "derivativeFunctionInput"
Me.derivativeFunctionInput.Size = New System.Drawing.Size(240, 31)
Me.derivativeFunctionInput.TabIndex = 1
'
'derivativeFunctionLabel
'
Me.derivativeFunctionLabel.AutoSize = True
Me.derivativeFunctionLabel.Location = New System.Drawing.Point(43, 34)
Me.derivativeFunctionLabel.Name = "derivativeFunctionLabel"
Me.derivativeFunctionLabel.Size = New System.Drawing.Size(164, 25)
Me.derivativeFunctionLabel.TabIndex = 0
Me.derivativeFunctionLabel.Text = "Derivative function:"
'
'plotView
'
Me.plotView.Dock = System.Windows.Forms.DockStyle.Fill
Me.plotView.Location = New System.Drawing.Point(0, 193)
Me.plotView.Name = "plotView"
Me.plotView.PanCursor = System.Windows.Forms.Cursors.Hand
Me.plotView.Size = New System.Drawing.Size(1378, 651)
Me.plotView.TabIndex = 1
Me.plotView.Text = "PlotView1"
Me.plotView.ZoomHorizontalCursor = System.Windows.Forms.Cursors.SizeWE
Me.plotView.ZoomRectangleCursor = System.Windows.Forms.Cursors.SizeNWSE
Me.plotView.ZoomVerticalCursor = System.Windows.Forms.Cursors.SizeNS
'
'showDotsCheckbox
'
Me.showDotsCheckbox.AutoSize = True
Me.showDotsCheckbox.Checked = True
Me.showDotsCheckbox.CheckState = System.Windows.Forms.CheckState.Checked
Me.showDotsCheckbox.Location = New System.Drawing.Point(730, 125)
Me.showDotsCheckbox.Name = "showDotsCheckbox"
Me.showDotsCheckbox.Size = New System.Drawing.Size(123, 29)
Me.showDotsCheckbox.TabIndex = 14
Me.showDotsCheckbox.Text = "Show dots"
Me.showDotsCheckbox.UseVisualStyleBackColor = True
'
'MainForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(10.0!, 25.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(1378, 844)
Me.Controls.Add(Me.plotView)
Me.Controls.Add(Me.inputPanel)
Me.Name = "MainForm"
Me.Text = "Eulers Method"
Me.inputPanel.ResumeLayout(False)
Me.inputPanel.PerformLayout()
CType(Me.pointCountInput, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.stepSizeInput, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.initialXInput, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.initialTInput, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents inputPanel As Panel
Friend WithEvents derivativeFunctionLabel As Label
Friend WithEvents derivativeFunctionInput As TextBox
Friend WithEvents initialValuesLabel As Label
Friend WithEvents initialXInput As NumericUpDown
Friend WithEvents initialXLabel As Label
Friend WithEvents initialTLabel As Label
Friend WithEvents initialTInput As NumericUpDown
Friend WithEvents stepSizeLabel As Label
Friend WithEvents stepSizeInput As NumericUpDown
Friend WithEvents goButton As Button
Friend WithEvents pointCountLabel As Label
Friend WithEvents pointCountInput As NumericUpDown
Friend WithEvents connectPointsCheckbox As CheckBox
Friend WithEvents Label1 As Label
Friend WithEvents plotView As OxyPlot.WindowsForms.PlotView
Friend WithEvents showDotsCheckbox As CheckBox
End Class