Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionParameterAnalysisView.Designer.cs @ 14636

Last change on this file since 14636 was 14636, checked in by swagner, 7 years ago

#2726: Worked on RunCollectionParameterAnalysis view.

File size: 20.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Optimization.Views {
23  partial class RunCollectionParameterAnalysisView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
49      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
50      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
51      System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
52      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
53      this.stepSizeLabel = new System.Windows.Forms.Label();
54      this.stepSizeTextBox = new System.Windows.Forms.TextBox();
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.logScalingCheckBox = new System.Windows.Forms.CheckBox();
57      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
58      this.groupsTreeView = new System.Windows.Forms.TreeView();
59      this.splitContainer = new System.Windows.Forms.SplitContainer();
60      this.groupsGroupBox = new System.Windows.Forms.GroupBox();
61      this.removeGroupButton = new System.Windows.Forms.Button();
62      this.addGroupButton = new System.Windows.Forms.Button();
63      this.parametersGroupBox = new System.Windows.Forms.GroupBox();
64      this.parametersTreeView = new System.Windows.Forms.TreeView();
65      this.dataRowsGroupBox = new System.Windows.Forms.GroupBox();
66      this.minMaxCheckBox = new System.Windows.Forms.CheckBox();
67      this.medianCheckBox = new System.Windows.Forms.CheckBox();
68      this.quartilesCheckBox = new System.Windows.Forms.CheckBox();
69      this.averageCheckBox = new System.Windows.Forms.CheckBox();
70      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
71      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
72      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
73      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
74      this.splitContainer.Panel1.SuspendLayout();
75      this.splitContainer.Panel2.SuspendLayout();
76      this.splitContainer.SuspendLayout();
77      this.groupsGroupBox.SuspendLayout();
78      this.parametersGroupBox.SuspendLayout();
79      this.dataRowsGroupBox.SuspendLayout();
80      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
81      this.splitContainer1.Panel1.SuspendLayout();
82      this.splitContainer1.Panel2.SuspendLayout();
83      this.splitContainer1.SuspendLayout();
84      this.SuspendLayout();
85      //
86      // chart
87      //
88      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
89            | System.Windows.Forms.AnchorStyles.Left)
90            | System.Windows.Forms.AnchorStyles.Right)));
91      chartArea1.AxisX.IsStartedFromZero = false;
92      chartArea1.AxisX.LabelStyle.Format = "N0";
93      chartArea1.AxisX.MinorGrid.Enabled = true;
94      chartArea1.AxisX.MinorGrid.LineColor = System.Drawing.Color.WhiteSmoke;
95      chartArea1.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
96      chartArea1.AxisX.ScaleBreakStyle.Enabled = true;
97      chartArea1.AxisX.Title = "Evaluated Solutions";
98      chartArea1.AxisY.LabelStyle.Format = "P0";
99      chartArea1.AxisY.MinorGrid.Enabled = true;
100      chartArea1.AxisY.MinorGrid.LineColor = System.Drawing.Color.WhiteSmoke;
101      chartArea1.AxisY.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
102      chartArea1.AxisY.Title = "Relative Distance to Best Known Quality";
103      chartArea1.CursorX.Interval = 0D;
104      chartArea1.CursorX.IsUserSelectionEnabled = true;
105      chartArea1.CursorY.Interval = 0D;
106      chartArea1.CursorY.IsUserSelectionEnabled = true;
107      chartArea1.Name = "chartArea";
108      this.chart.ChartAreas.Add(chartArea1);
109      this.chart.Cursor = System.Windows.Forms.Cursors.Default;
110      legend1.Alignment = System.Drawing.StringAlignment.Center;
111      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
112      legend1.Name = "legend";
113      this.chart.Legends.Add(legend1);
114      this.chart.Location = new System.Drawing.Point(3, 0);
115      this.chart.Name = "chart";
116      series1.ChartArea = "chartArea";
117      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
118      series1.Legend = "legend";
119      series1.Name = "Series1";
120      this.chart.Series.Add(series1);
121      this.chart.Size = new System.Drawing.Size(735, 852);
122      this.chart.TabIndex = 0;
123      this.chart.Text = "chart";
124      title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
125      title1.Name = "title";
126      title1.Text = "Title";
127      this.chart.Titles.Add(title1);
128      this.chart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
129      this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
130      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
131      //
132      // stepSizeLabel
133      //
134      this.stepSizeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
135      this.stepSizeLabel.AutoSize = true;
136      this.stepSizeLabel.Location = new System.Drawing.Point(3, 831);
137      this.stepSizeLabel.Name = "stepSizeLabel";
138      this.stepSizeLabel.Size = new System.Drawing.Size(55, 13);
139      this.stepSizeLabel.TabIndex = 1;
140      this.stepSizeLabel.Text = "&Step Size:";
141      //
142      // stepSizeTextBox
143      //
144      this.stepSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
145      this.stepSizeTextBox.Location = new System.Drawing.Point(82, 828);
146      this.stepSizeTextBox.Name = "stepSizeTextBox";
147      this.stepSizeTextBox.Size = new System.Drawing.Size(100, 20);
148      this.stepSizeTextBox.TabIndex = 2;
149      this.toolTip.SetToolTip(this.stepSizeTextBox, "The step size of evaluated solutions on the x-axis.");
150      this.stepSizeTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.stepSizeTextBox_KeyDown);
151      this.stepSizeTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.stepSizeTextBox_Validating);
152      this.stepSizeTextBox.Validated += new System.EventHandler(this.stepSizeTextBox_Validated);
153      //
154      // logScalingCheckBox
155      //
156      this.logScalingCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
157      this.logScalingCheckBox.AutoSize = true;
158      this.logScalingCheckBox.Location = new System.Drawing.Point(206, 830);
159      this.logScalingCheckBox.Name = "logScalingCheckBox";
160      this.logScalingCheckBox.Size = new System.Drawing.Size(118, 17);
161      this.logScalingCheckBox.TabIndex = 3;
162      this.logScalingCheckBox.Text = "&Logarithmic Scaling";
163      this.toolTip.SetToolTip(this.logScalingCheckBox, "Logarithmic scaling on x-axis.");
164      this.logScalingCheckBox.UseVisualStyleBackColor = true;
165      this.logScalingCheckBox.CheckedChanged += new System.EventHandler(this.logScalingCheckBox_CheckedChanged);
166      //
167      // errorProvider
168      //
169      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
170      this.errorProvider.ContainerControl = this;
171      //
172      // groupsTreeView
173      //
174      this.groupsTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
175            | System.Windows.Forms.AnchorStyles.Left)
176            | System.Windows.Forms.AnchorStyles.Right)));
177      this.groupsTreeView.HideSelection = false;
178      this.groupsTreeView.Location = new System.Drawing.Point(6, 49);
179      this.groupsTreeView.Name = "groupsTreeView";
180      this.groupsTreeView.ShowRootLines = false;
181      this.groupsTreeView.Size = new System.Drawing.Size(255, 524);
182      this.groupsTreeView.TabIndex = 2;
183      this.groupsTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.groupsTreeView_AfterSelect);
184      //
185      // splitContainer
186      //
187      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
188      this.splitContainer.Location = new System.Drawing.Point(0, 0);
189      this.splitContainer.Name = "splitContainer";
190      //
191      // splitContainer.Panel1
192      //
193      this.splitContainer.Panel1.Controls.Add(this.splitContainer1);
194      //
195      // splitContainer.Panel2
196      //
197      this.splitContainer.Panel2.Controls.Add(this.dataRowsGroupBox);
198      this.splitContainer.Panel2.Controls.Add(this.stepSizeTextBox);
199      this.splitContainer.Panel2.Controls.Add(this.stepSizeLabel);
200      this.splitContainer.Panel2.Controls.Add(this.logScalingCheckBox);
201      this.splitContainer.Panel2.Controls.Add(this.chart);
202      this.splitContainer.Size = new System.Drawing.Size(1101, 851);
203      this.splitContainer.SplitterDistance = 273;
204      this.splitContainer.TabIndex = 0;
205      //
206      // groupsGroupBox
207      //
208      this.groupsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
209            | System.Windows.Forms.AnchorStyles.Left)
210            | System.Windows.Forms.AnchorStyles.Right)));
211      this.groupsGroupBox.Controls.Add(this.removeGroupButton);
212      this.groupsGroupBox.Controls.Add(this.groupsTreeView);
213      this.groupsGroupBox.Controls.Add(this.addGroupButton);
214      this.groupsGroupBox.Location = new System.Drawing.Point(3, 4);
215      this.groupsGroupBox.Name = "groupsGroupBox";
216      this.groupsGroupBox.Size = new System.Drawing.Size(267, 579);
217      this.groupsGroupBox.TabIndex = 0;
218      this.groupsGroupBox.TabStop = false;
219      this.groupsGroupBox.Text = "&Groups";
220      //
221      // removeGroupButton
222      //
223      this.removeGroupButton.Enabled = false;
224      this.removeGroupButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
225      this.removeGroupButton.Location = new System.Drawing.Point(36, 19);
226      this.removeGroupButton.Name = "removeGroupButton";
227      this.removeGroupButton.Size = new System.Drawing.Size(24, 24);
228      this.removeGroupButton.TabIndex = 1;
229      this.removeGroupButton.UseVisualStyleBackColor = true;
230      this.removeGroupButton.Click += new System.EventHandler(this.removeGroupButton_Click);
231      //
232      // addGroupButton
233      //
234      this.addGroupButton.Enabled = false;
235      this.addGroupButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
236      this.addGroupButton.Location = new System.Drawing.Point(6, 19);
237      this.addGroupButton.Name = "addGroupButton";
238      this.addGroupButton.Size = new System.Drawing.Size(24, 24);
239      this.addGroupButton.TabIndex = 0;
240      this.addGroupButton.UseVisualStyleBackColor = true;
241      this.addGroupButton.Click += new System.EventHandler(this.addGroupButton_Click);
242      //
243      // parametersGroupBox
244      //
245      this.parametersGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
246            | System.Windows.Forms.AnchorStyles.Left)
247            | System.Windows.Forms.AnchorStyles.Right)));
248      this.parametersGroupBox.Controls.Add(this.parametersTreeView);
249      this.parametersGroupBox.Location = new System.Drawing.Point(3, 3);
250      this.parametersGroupBox.Name = "parametersGroupBox";
251      this.parametersGroupBox.Size = new System.Drawing.Size(267, 255);
252      this.parametersGroupBox.TabIndex = 0;
253      this.parametersGroupBox.TabStop = false;
254      this.parametersGroupBox.Text = "&Parameters";
255      //
256      // parametersTreeView
257      //
258      this.parametersTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
259            | System.Windows.Forms.AnchorStyles.Left)
260            | System.Windows.Forms.AnchorStyles.Right)));
261      this.parametersTreeView.HideSelection = false;
262      this.parametersTreeView.Location = new System.Drawing.Point(6, 19);
263      this.parametersTreeView.Name = "parametersTreeView";
264      this.parametersTreeView.ShowRootLines = false;
265      this.parametersTreeView.Size = new System.Drawing.Size(255, 230);
266      this.parametersTreeView.TabIndex = 0;
267      this.parametersTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.parametersTreeView_AfterSelect);
268      //
269      // dataRowsGroupBox
270      //
271      this.dataRowsGroupBox.Anchor = System.Windows.Forms.AnchorStyles.Right;
272      this.dataRowsGroupBox.Controls.Add(this.minMaxCheckBox);
273      this.dataRowsGroupBox.Controls.Add(this.medianCheckBox);
274      this.dataRowsGroupBox.Controls.Add(this.quartilesCheckBox);
275      this.dataRowsGroupBox.Controls.Add(this.averageCheckBox);
276      this.dataRowsGroupBox.Location = new System.Drawing.Point(744, 395);
277      this.dataRowsGroupBox.Name = "dataRowsGroupBox";
278      this.dataRowsGroupBox.Size = new System.Drawing.Size(77, 111);
279      this.dataRowsGroupBox.TabIndex = 4;
280      this.dataRowsGroupBox.TabStop = false;
281      this.dataRowsGroupBox.Text = "&Data Rows";
282      //
283      // minMaxCheckBox
284      //
285      this.minMaxCheckBox.AutoSize = true;
286      this.minMaxCheckBox.Location = new System.Drawing.Point(6, 19);
287      this.minMaxCheckBox.Name = "minMaxCheckBox";
288      this.minMaxCheckBox.Size = new System.Drawing.Size(68, 17);
289      this.minMaxCheckBox.TabIndex = 0;
290      this.minMaxCheckBox.Text = "&Min/Max";
291      this.minMaxCheckBox.UseVisualStyleBackColor = true;
292      this.minMaxCheckBox.CheckedChanged += new System.EventHandler(this.dataRowCheckBox_CheckedChanged);
293      //
294      // medianCheckBox
295      //
296      this.medianCheckBox.AutoSize = true;
297      this.medianCheckBox.Checked = true;
298      this.medianCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
299      this.medianCheckBox.Location = new System.Drawing.Point(6, 88);
300      this.medianCheckBox.Name = "medianCheckBox";
301      this.medianCheckBox.Size = new System.Drawing.Size(61, 17);
302      this.medianCheckBox.TabIndex = 3;
303      this.medianCheckBox.Text = "M&edian";
304      this.medianCheckBox.UseVisualStyleBackColor = true;
305      this.medianCheckBox.CheckedChanged += new System.EventHandler(this.dataRowCheckBox_CheckedChanged);
306      //
307      // quartilesCheckBox
308      //
309      this.quartilesCheckBox.AutoSize = true;
310      this.quartilesCheckBox.Checked = true;
311      this.quartilesCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
312      this.quartilesCheckBox.Location = new System.Drawing.Point(6, 42);
313      this.quartilesCheckBox.Name = "quartilesCheckBox";
314      this.quartilesCheckBox.Size = new System.Drawing.Size(59, 17);
315      this.quartilesCheckBox.TabIndex = 1;
316      this.quartilesCheckBox.Text = "&Q1/Q3";
317      this.quartilesCheckBox.UseVisualStyleBackColor = true;
318      this.quartilesCheckBox.CheckedChanged += new System.EventHandler(this.dataRowCheckBox_CheckedChanged);
319      //
320      // averageCheckBox
321      //
322      this.averageCheckBox.AutoSize = true;
323      this.averageCheckBox.Location = new System.Drawing.Point(6, 65);
324      this.averageCheckBox.Name = "averageCheckBox";
325      this.averageCheckBox.Size = new System.Drawing.Size(66, 17);
326      this.averageCheckBox.TabIndex = 2;
327      this.averageCheckBox.Text = "&Average";
328      this.averageCheckBox.UseVisualStyleBackColor = true;
329      this.averageCheckBox.CheckedChanged += new System.EventHandler(this.dataRowCheckBox_CheckedChanged);
330      //
331      // splitContainer1
332      //
333      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
334      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
335      this.splitContainer1.Name = "splitContainer1";
336      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
337      //
338      // splitContainer1.Panel1
339      //
340      this.splitContainer1.Panel1.Controls.Add(this.parametersGroupBox);
341      //
342      // splitContainer1.Panel2
343      //
344      this.splitContainer1.Panel2.Controls.Add(this.groupsGroupBox);
345      this.splitContainer1.Size = new System.Drawing.Size(273, 851);
346      this.splitContainer1.SplitterDistance = 261;
347      this.splitContainer1.TabIndex = 0;
348      //
349      // RunCollectionParameterAnalysisView
350      //
351      this.BackColor = System.Drawing.SystemColors.Window;
352      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
353      this.Controls.Add(this.splitContainer);
354      this.Name = "RunCollectionParameterAnalysisView";
355      this.Size = new System.Drawing.Size(1101, 851);
356      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
357      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
358      this.splitContainer.Panel1.ResumeLayout(false);
359      this.splitContainer.Panel2.ResumeLayout(false);
360      this.splitContainer.Panel2.PerformLayout();
361      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
362      this.splitContainer.ResumeLayout(false);
363      this.groupsGroupBox.ResumeLayout(false);
364      this.parametersGroupBox.ResumeLayout(false);
365      this.dataRowsGroupBox.ResumeLayout(false);
366      this.dataRowsGroupBox.PerformLayout();
367      this.splitContainer1.Panel1.ResumeLayout(false);
368      this.splitContainer1.Panel2.ResumeLayout(false);
369      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
370      this.splitContainer1.ResumeLayout(false);
371      this.ResumeLayout(false);
372
373    }
374
375    #endregion
376
377    private Visualization.ChartControlsExtensions.EnhancedChart chart;
378    private System.Windows.Forms.Label stepSizeLabel;
379    private System.Windows.Forms.TextBox stepSizeTextBox;
380    private System.Windows.Forms.ToolTip toolTip;
381    private System.Windows.Forms.ErrorProvider errorProvider;
382    private System.Windows.Forms.CheckBox logScalingCheckBox;
383    private System.Windows.Forms.SplitContainer splitContainer;
384    private System.Windows.Forms.TreeView groupsTreeView;
385    private System.Windows.Forms.GroupBox parametersGroupBox;
386    private System.Windows.Forms.TreeView parametersTreeView;
387    private System.Windows.Forms.CheckBox medianCheckBox;
388    private System.Windows.Forms.CheckBox averageCheckBox;
389    private System.Windows.Forms.CheckBox quartilesCheckBox;
390    private System.Windows.Forms.CheckBox minMaxCheckBox;
391    private System.Windows.Forms.GroupBox dataRowsGroupBox;
392    private System.Windows.Forms.GroupBox groupsGroupBox;
393    private System.Windows.Forms.Button removeGroupButton;
394    private System.Windows.Forms.Button addGroupButton;
395    private System.Windows.Forms.SplitContainer splitContainer1;
396  }
397}
Note: See TracBrowser for help on using the repository browser.