Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/3.3/DispatcherView.Designer.cs @ 2843

Last change on this file since 2843 was 2843, checked in by gkronber, 14 years ago

Removed max. and min. time offset constraints as algorithm parameters and from all engines. The time constraints were added to the relevant terminal symbols (variable & differential) instead. The time offset constraint can be changed by editing the symbols in the function library. #880 (Max and min time offsets for variable symbols are not set correctly by FunctionLibraryInjectors)

File size: 22.2 KB
Line 
1namespace HeuristicLab.CEDMA.Server {
2  partial class DispatcherView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.targetVariableList = new System.Windows.Forms.CheckedListBox();
28      this.inputVariableList = new System.Windows.Forms.CheckedListBox();
29      this.targetVariablesLabel = new System.Windows.Forms.Label();
30      this.inputVariablesLabel = new System.Windows.Forms.Label();
31      this.splitContainer = new System.Windows.Forms.SplitContainer();
32      this.learningTaskGroupBox = new System.Windows.Forms.GroupBox();
33      this.editEngineButton = new System.Windows.Forms.Button();
34      this.setAlgorithmDefault = new System.Windows.Forms.Button();
35      this.autoregressiveLabel = new System.Windows.Forms.Label();
36      this.classificationRadioButton = new System.Windows.Forms.RadioButton();
37      this.algorithmsListBox = new System.Windows.Forms.CheckedListBox();
38      this.regressionRadioButton = new System.Windows.Forms.RadioButton();
39      this.timeSeriesRadioButton = new System.Windows.Forms.RadioButton();
40      this.autoregressiveCheckBox = new System.Windows.Forms.CheckBox();
41      this.partitioningGroupBox = new System.Windows.Forms.GroupBox();
42      this.validationSamplesEndTextBox = new System.Windows.Forms.TextBox();
43      this.trainingLabel = new System.Windows.Forms.Label();
44      this.trainingSamplesStartTextBox = new System.Windows.Forms.TextBox();
45      this.trainingSamplesEndTextBox = new System.Windows.Forms.TextBox();
46      this.validationLabel = new System.Windows.Forms.Label();
47      this.testSamplesEndTextBox = new System.Windows.Forms.TextBox();
48      this.validationSamplesStartTextBox = new System.Windows.Forms.TextBox();
49      this.testSamplesStartTextBox = new System.Windows.Forms.TextBox();
50      this.testLabel = new System.Windows.Forms.Label();
51      this.setAllButton = new System.Windows.Forms.Button();
52      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
53      this.splitContainer.Panel1.SuspendLayout();
54      this.splitContainer.Panel2.SuspendLayout();
55      this.splitContainer.SuspendLayout();
56      this.learningTaskGroupBox.SuspendLayout();
57      this.partitioningGroupBox.SuspendLayout();
58      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
59      this.SuspendLayout();
60      //
61      // targetVariableList
62      //
63      this.targetVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
64                  | System.Windows.Forms.AnchorStyles.Left)
65                  | System.Windows.Forms.AnchorStyles.Right)));
66      this.targetVariableList.FormattingEnabled = true;
67      this.targetVariableList.HorizontalScrollbar = true;
68      this.targetVariableList.Location = new System.Drawing.Point(3, 16);
69      this.targetVariableList.Name = "targetVariableList";
70      this.targetVariableList.Size = new System.Drawing.Size(346, 214);
71      this.targetVariableList.TabIndex = 0;
72      this.targetVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.targetVariableList_ItemCheck);
73      this.targetVariableList.SelectedValueChanged += new System.EventHandler(this.targetVariableList_SelectedValueChanged);
74      //
75      // inputVariableList
76      //
77      this.inputVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
78                  | System.Windows.Forms.AnchorStyles.Left)
79                  | System.Windows.Forms.AnchorStyles.Right)));
80      this.inputVariableList.FormattingEnabled = true;
81      this.inputVariableList.HorizontalScrollbar = true;
82      this.inputVariableList.Location = new System.Drawing.Point(2, 16);
83      this.inputVariableList.Name = "inputVariableList";
84      this.inputVariableList.Size = new System.Drawing.Size(393, 634);
85      this.inputVariableList.TabIndex = 1;
86      this.inputVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.inputVariableList_ItemCheck);
87      //
88      // targetVariablesLabel
89      //
90      this.targetVariablesLabel.AutoSize = true;
91      this.targetVariablesLabel.Location = new System.Drawing.Point(0, 0);
92      this.targetVariablesLabel.Name = "targetVariablesLabel";
93      this.targetVariablesLabel.Size = new System.Drawing.Size(86, 13);
94      this.targetVariablesLabel.TabIndex = 2;
95      this.targetVariablesLabel.Text = "Target variables:";
96      //
97      // inputVariablesLabel
98      //
99      this.inputVariablesLabel.AutoSize = true;
100      this.inputVariablesLabel.Location = new System.Drawing.Point(3, 0);
101      this.inputVariablesLabel.Name = "inputVariablesLabel";
102      this.inputVariablesLabel.Size = new System.Drawing.Size(79, 13);
103      this.inputVariablesLabel.TabIndex = 3;
104      this.inputVariablesLabel.Text = "Input variables:";
105      //
106      // splitContainer
107      //
108      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
109      this.splitContainer.Location = new System.Drawing.Point(0, 0);
110      this.splitContainer.Name = "splitContainer";
111      //
112      // splitContainer.Panel1
113      //
114      this.splitContainer.Panel1.Controls.Add(this.learningTaskGroupBox);
115      this.splitContainer.Panel1.Controls.Add(this.partitioningGroupBox);
116      this.splitContainer.Panel1.Controls.Add(this.targetVariablesLabel);
117      this.splitContainer.Panel1.Controls.Add(this.targetVariableList);
118      //
119      // splitContainer.Panel2
120      //
121      this.splitContainer.Panel2.Controls.Add(this.setAllButton);
122      this.splitContainer.Panel2.Controls.Add(this.inputVariablesLabel);
123      this.splitContainer.Panel2.Controls.Add(this.inputVariableList);
124      this.splitContainer.Size = new System.Drawing.Size(754, 688);
125      this.splitContainer.SplitterDistance = 355;
126      this.splitContainer.SplitterWidth = 1;
127      this.splitContainer.TabIndex = 4;
128      //
129      // learningTaskGroupBox
130      //
131      this.learningTaskGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
132      this.learningTaskGroupBox.Controls.Add(this.editEngineButton);
133      this.learningTaskGroupBox.Controls.Add(this.setAlgorithmDefault);
134      this.learningTaskGroupBox.Controls.Add(this.autoregressiveLabel);
135      this.learningTaskGroupBox.Controls.Add(this.classificationRadioButton);
136      this.learningTaskGroupBox.Controls.Add(this.algorithmsListBox);
137      this.learningTaskGroupBox.Controls.Add(this.regressionRadioButton);
138      this.learningTaskGroupBox.Controls.Add(this.timeSeriesRadioButton);
139      this.learningTaskGroupBox.Controls.Add(this.autoregressiveCheckBox);
140      this.learningTaskGroupBox.Enabled = false;
141      this.learningTaskGroupBox.Location = new System.Drawing.Point(6, 236);
142      this.learningTaskGroupBox.Name = "learningTaskGroupBox";
143      this.learningTaskGroupBox.Size = new System.Drawing.Size(343, 341);
144      this.learningTaskGroupBox.TabIndex = 36;
145      this.learningTaskGroupBox.TabStop = false;
146      this.learningTaskGroupBox.Text = "Learning task";
147      //
148      // editEngineButton
149      //
150      this.editEngineButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
151      this.editEngineButton.Location = new System.Drawing.Point(108, 312);
152      this.editEngineButton.Name = "editEngineButton";
153      this.editEngineButton.Size = new System.Drawing.Size(75, 23);
154      this.editEngineButton.TabIndex = 37;
155      this.editEngineButton.Text = "Edit engine";
156      this.editEngineButton.UseVisualStyleBackColor = true;
157      this.editEngineButton.Click += new System.EventHandler(this.editEngineButton_Click);
158      //
159      // setAlgorithmDefault
160      //
161      this.setAlgorithmDefault.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
162      this.setAlgorithmDefault.Location = new System.Drawing.Point(6, 312);
163      this.setAlgorithmDefault.Name = "setAlgorithmDefault";
164      this.setAlgorithmDefault.Size = new System.Drawing.Size(96, 23);
165      this.setAlgorithmDefault.TabIndex = 36;
166      this.setAlgorithmDefault.Text = "Use as default";
167      this.setAlgorithmDefault.UseVisualStyleBackColor = true;
168      this.setAlgorithmDefault.Click += new System.EventHandler(this.setAlgorithmDefault_Click);
169      //
170      // autoregressiveLabel
171      //
172      this.autoregressiveLabel.AutoSize = true;
173      this.autoregressiveLabel.Enabled = false;
174      this.autoregressiveLabel.Location = new System.Drawing.Point(45, 83);
175      this.autoregressiveLabel.Name = "autoregressiveLabel";
176      this.autoregressiveLabel.Size = new System.Drawing.Size(80, 13);
177      this.autoregressiveLabel.TabIndex = 35;
178      this.autoregressiveLabel.Text = "Autoregressive:";
179      //
180      // classificationRadioButton
181      //
182      this.classificationRadioButton.AutoSize = true;
183      this.classificationRadioButton.Location = new System.Drawing.Point(6, 16);
184      this.classificationRadioButton.Name = "classificationRadioButton";
185      this.classificationRadioButton.Size = new System.Drawing.Size(86, 17);
186      this.classificationRadioButton.TabIndex = 28;
187      this.classificationRadioButton.Text = "Classification";
188      this.classificationRadioButton.UseVisualStyleBackColor = true;
189      this.classificationRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
190      //
191      // algorithmsListBox
192      //
193      this.algorithmsListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
194                  | System.Windows.Forms.AnchorStyles.Left)
195                  | System.Windows.Forms.AnchorStyles.Right)));
196      this.algorithmsListBox.Enabled = false;
197      this.algorithmsListBox.FormattingEnabled = true;
198      this.algorithmsListBox.HorizontalScrollbar = true;
199      this.algorithmsListBox.Location = new System.Drawing.Point(6, 110);
200      this.algorithmsListBox.Name = "algorithmsListBox";
201      this.algorithmsListBox.Size = new System.Drawing.Size(331, 184);
202      this.algorithmsListBox.TabIndex = 4;
203      this.algorithmsListBox.SelectedIndexChanged += new System.EventHandler(this.algorithmsListBox_SelectedIndexChanged);
204      this.algorithmsListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.algorithmsListBox_ItemCheck);
205      //
206      // regressionRadioButton
207      //
208      this.regressionRadioButton.AutoSize = true;
209      this.regressionRadioButton.Location = new System.Drawing.Point(6, 39);
210      this.regressionRadioButton.Name = "regressionRadioButton";
211      this.regressionRadioButton.Size = new System.Drawing.Size(78, 17);
212      this.regressionRadioButton.TabIndex = 29;
213      this.regressionRadioButton.Text = "Regression";
214      this.regressionRadioButton.UseVisualStyleBackColor = true;
215      this.regressionRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
216      //
217      // timeSeriesRadioButton
218      //
219      this.timeSeriesRadioButton.AutoSize = true;
220      this.timeSeriesRadioButton.Location = new System.Drawing.Point(6, 62);
221      this.timeSeriesRadioButton.Name = "timeSeriesRadioButton";
222      this.timeSeriesRadioButton.Size = new System.Drawing.Size(119, 17);
223      this.timeSeriesRadioButton.TabIndex = 30;
224      this.timeSeriesRadioButton.Text = "Time series forecast";
225      this.timeSeriesRadioButton.UseVisualStyleBackColor = true;
226      this.timeSeriesRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
227      //
228      // autoregressiveCheckBox
229      //
230      this.autoregressiveCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Top;
231      this.autoregressiveCheckBox.AutoSize = true;
232      this.autoregressiveCheckBox.Enabled = false;
233      this.autoregressiveCheckBox.Location = new System.Drawing.Point(139, 83);
234      this.autoregressiveCheckBox.Name = "autoregressiveCheckBox";
235      this.autoregressiveCheckBox.Size = new System.Drawing.Size(15, 14);
236      this.autoregressiveCheckBox.TabIndex = 22;
237      this.autoregressiveCheckBox.UseVisualStyleBackColor = true;
238      this.autoregressiveCheckBox.CheckedChanged += new System.EventHandler(this.autoregressiveCheckBox_CheckedChanged);
239      //
240      // partitioningGroupBox
241      //
242      this.partitioningGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
243      this.partitioningGroupBox.Controls.Add(this.validationSamplesEndTextBox);
244      this.partitioningGroupBox.Controls.Add(this.trainingLabel);
245      this.partitioningGroupBox.Controls.Add(this.trainingSamplesStartTextBox);
246      this.partitioningGroupBox.Controls.Add(this.trainingSamplesEndTextBox);
247      this.partitioningGroupBox.Controls.Add(this.validationLabel);
248      this.partitioningGroupBox.Controls.Add(this.testSamplesEndTextBox);
249      this.partitioningGroupBox.Controls.Add(this.validationSamplesStartTextBox);
250      this.partitioningGroupBox.Controls.Add(this.testSamplesStartTextBox);
251      this.partitioningGroupBox.Controls.Add(this.testLabel);
252      this.partitioningGroupBox.Enabled = false;
253      this.partitioningGroupBox.Location = new System.Drawing.Point(6, 583);
254      this.partitioningGroupBox.Name = "partitioningGroupBox";
255      this.partitioningGroupBox.Size = new System.Drawing.Size(343, 102);
256      this.partitioningGroupBox.TabIndex = 26;
257      this.partitioningGroupBox.TabStop = false;
258      this.partitioningGroupBox.Text = "Data set partitions:";
259      //
260      // validationSamplesEndTextBox
261      //
262      this.validationSamplesEndTextBox.Location = new System.Drawing.Point(222, 45);
263      this.validationSamplesEndTextBox.Name = "validationSamplesEndTextBox";
264      this.validationSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
265      this.validationSamplesEndTextBox.TabIndex = 13;
266      this.validationSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
267      this.validationSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
268      //
269      // trainingLabel
270      //
271      this.trainingLabel.AutoSize = true;
272      this.trainingLabel.Location = new System.Drawing.Point(14, 22);
273      this.trainingLabel.Name = "trainingLabel";
274      this.trainingLabel.Size = new System.Drawing.Size(89, 13);
275      this.trainingLabel.TabIndex = 3;
276      this.trainingLabel.Text = "Training samples:";
277      //
278      // trainingSamplesStartTextBox
279      //
280      this.trainingSamplesStartTextBox.Location = new System.Drawing.Point(120, 19);
281      this.trainingSamplesStartTextBox.Name = "trainingSamplesStartTextBox";
282      this.trainingSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
283      this.trainingSamplesStartTextBox.TabIndex = 4;
284      this.trainingSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
285      this.trainingSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
286      //
287      // trainingSamplesEndTextBox
288      //
289      this.trainingSamplesEndTextBox.Location = new System.Drawing.Point(222, 19);
290      this.trainingSamplesEndTextBox.Name = "trainingSamplesEndTextBox";
291      this.trainingSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
292      this.trainingSamplesEndTextBox.TabIndex = 10;
293      this.trainingSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
294      this.trainingSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
295      //
296      // validationLabel
297      //
298      this.validationLabel.AutoSize = true;
299      this.validationLabel.Location = new System.Drawing.Point(6, 48);
300      this.validationLabel.Name = "validationLabel";
301      this.validationLabel.Size = new System.Drawing.Size(97, 13);
302      this.validationLabel.TabIndex = 11;
303      this.validationLabel.Text = "Validation samples:";
304      //
305      // testSamplesEndTextBox
306      //
307      this.testSamplesEndTextBox.Location = new System.Drawing.Point(222, 70);
308      this.testSamplesEndTextBox.Name = "testSamplesEndTextBox";
309      this.testSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
310      this.testSamplesEndTextBox.TabIndex = 16;
311      this.testSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
312      this.testSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
313      //
314      // validationSamplesStartTextBox
315      //
316      this.validationSamplesStartTextBox.Location = new System.Drawing.Point(120, 45);
317      this.validationSamplesStartTextBox.Name = "validationSamplesStartTextBox";
318      this.validationSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
319      this.validationSamplesStartTextBox.TabIndex = 12;
320      this.validationSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
321      this.validationSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
322      //
323      // testSamplesStartTextBox
324      //
325      this.testSamplesStartTextBox.Location = new System.Drawing.Point(120, 70);
326      this.testSamplesStartTextBox.Name = "testSamplesStartTextBox";
327      this.testSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
328      this.testSamplesStartTextBox.TabIndex = 15;
329      this.testSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
330      this.testSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
331      //
332      // testLabel
333      //
334      this.testLabel.AutoSize = true;
335      this.testLabel.Location = new System.Drawing.Point(31, 73);
336      this.testLabel.Name = "testLabel";
337      this.testLabel.Size = new System.Drawing.Size(72, 13);
338      this.testLabel.TabIndex = 14;
339      this.testLabel.Text = "Test samples:";
340      //
341      // setAllButton
342      //
343      this.setAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
344      this.setAllButton.Location = new System.Drawing.Point(3, 662);
345      this.setAllButton.Name = "setAllButton";
346      this.setAllButton.Size = new System.Drawing.Size(91, 23);
347      this.setAllButton.TabIndex = 4;
348      this.setAllButton.Text = "Use as default";
349      this.setAllButton.UseVisualStyleBackColor = true;
350      this.setAllButton.Click += new System.EventHandler(this.setAllButton_Click);
351      //
352      // errorProvider
353      //
354      this.errorProvider.ContainerControl = this;
355      //
356      // DispatcherView
357      //
358      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
359      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
360      this.Controls.Add(this.splitContainer);
361      this.Name = "DispatcherView";
362      this.Size = new System.Drawing.Size(754, 688);
363      this.splitContainer.Panel1.ResumeLayout(false);
364      this.splitContainer.Panel1.PerformLayout();
365      this.splitContainer.Panel2.ResumeLayout(false);
366      this.splitContainer.Panel2.PerformLayout();
367      this.splitContainer.ResumeLayout(false);
368      this.learningTaskGroupBox.ResumeLayout(false);
369      this.learningTaskGroupBox.PerformLayout();
370      this.partitioningGroupBox.ResumeLayout(false);
371      this.partitioningGroupBox.PerformLayout();
372      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
373      this.ResumeLayout(false);
374
375    }
376
377    #endregion
378
379    private System.Windows.Forms.CheckedListBox targetVariableList;
380    private System.Windows.Forms.CheckedListBox inputVariableList;
381    private System.Windows.Forms.Label targetVariablesLabel;
382    private System.Windows.Forms.Label inputVariablesLabel;
383    private System.Windows.Forms.SplitContainer splitContainer;
384    private System.Windows.Forms.Button setAllButton;
385    private System.Windows.Forms.CheckedListBox algorithmsListBox;
386    private System.Windows.Forms.GroupBox partitioningGroupBox;
387    private System.Windows.Forms.TextBox validationSamplesEndTextBox;
388    private System.Windows.Forms.Label trainingLabel;
389    private System.Windows.Forms.TextBox trainingSamplesStartTextBox;
390    private System.Windows.Forms.TextBox trainingSamplesEndTextBox;
391    private System.Windows.Forms.Label validationLabel;
392    private System.Windows.Forms.TextBox testSamplesEndTextBox;
393    private System.Windows.Forms.TextBox validationSamplesStartTextBox;
394    private System.Windows.Forms.TextBox testSamplesStartTextBox;
395    private System.Windows.Forms.Label testLabel;
396    private System.Windows.Forms.GroupBox learningTaskGroupBox;
397    private System.Windows.Forms.Label autoregressiveLabel;
398    private System.Windows.Forms.RadioButton classificationRadioButton;
399    private System.Windows.Forms.RadioButton regressionRadioButton;
400    private System.Windows.Forms.RadioButton timeSeriesRadioButton;
401    private System.Windows.Forms.CheckBox autoregressiveCheckBox;
402    private System.Windows.Forms.Button setAlgorithmDefault;
403    private System.Windows.Forms.Button editEngineButton;
404    private System.Windows.Forms.ErrorProvider errorProvider;
405  }
406}
Note: See TracBrowser for help on using the repository browser.