Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/VariableTrackbar.Designer.cs @ 12694

Last change on this file since 12694 was 12694, checked in by abeham, 9 years ago

#2208: merged trunk changes

File size: 7.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Problems.DataAnalysis.Symbolic.Regression.Views {
23  partial class VariableTrackbar {
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 Component 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      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
48      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
49      System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
50      this.valueLabel = new System.Windows.Forms.Label();
51      this.valueTextBox = new System.Windows.Forms.TextBox();
52      this.trackBar = new System.Windows.Forms.TrackBar();
53      this.boxPlotChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
54      this.groupBox = new System.Windows.Forms.GroupBox();
55      ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
56      ((System.ComponentModel.ISupportInitialize)(this.boxPlotChart)).BeginInit();
57      this.groupBox.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // valueLabel
61      //
62      this.valueLabel.AutoSize = true;
63      this.valueLabel.Location = new System.Drawing.Point(6, 22);
64      this.valueLabel.Name = "valueLabel";
65      this.valueLabel.Size = new System.Drawing.Size(37, 13);
66      this.valueLabel.TabIndex = 0;
67      this.valueLabel.Text = "Value:";
68      //
69      // valueTextBox
70      //
71      this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
72                  | System.Windows.Forms.AnchorStyles.Right)));
73      this.valueTextBox.Location = new System.Drawing.Point(49, 19);
74      this.valueTextBox.Name = "valueTextBox";
75      this.valueTextBox.ReadOnly = true;
76      this.valueTextBox.Size = new System.Drawing.Size(56, 20);
77      this.valueTextBox.TabIndex = 1;
78      //
79      // trackBar
80      //
81      this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
82                  | System.Windows.Forms.AnchorStyles.Left)));
83      this.trackBar.Location = new System.Drawing.Point(6, 45);
84      this.trackBar.Name = "trackBar";
85      this.trackBar.Orientation = System.Windows.Forms.Orientation.Vertical;
86      this.trackBar.Size = new System.Drawing.Size(45, 277);
87      this.trackBar.TabIndex = 2;
88      this.trackBar.TickStyle = System.Windows.Forms.TickStyle.None;
89      this.trackBar.ValueChanged += new System.EventHandler(this.TrackBarValueChanged);
90      //
91      // boxPlotChart
92      //
93      this.boxPlotChart.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94                  | System.Windows.Forms.AnchorStyles.Left)));
95      this.boxPlotChart.BackColor = System.Drawing.SystemColors.Control;
96      chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
97      chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
98      chartArea1.BackColor = System.Drawing.SystemColors.Control;
99      chartArea1.BackSecondaryColor = System.Drawing.Color.White;
100      chartArea1.Name = "ChartArea";
101      this.boxPlotChart.ChartAreas.Add(chartArea1);
102      this.boxPlotChart.Location = new System.Drawing.Point(39, 45);
103      this.boxPlotChart.Name = "boxPlotChart";
104      series1.ChartArea = "ChartArea";
105      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
106      series1.Name = "BoxPlot";
107      series1.YValuesPerPoint = 6;
108      series2.ChartArea = "ChartArea";
109      series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
110      series2.Enabled = false;
111      series2.Name = "DataSeries";
112      this.boxPlotChart.Series.Add(series1);
113      this.boxPlotChart.Series.Add(series2);
114      this.boxPlotChart.Size = new System.Drawing.Size(66, 277);
115      this.boxPlotChart.TabIndex = 3;
116      this.boxPlotChart.Text = "boxPlotChart";
117      //
118      // groupBox
119      //
120      this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
121                  | System.Windows.Forms.AnchorStyles.Left)
122                  | System.Windows.Forms.AnchorStyles.Right)));
123      this.groupBox.Controls.Add(this.valueLabel);
124      this.groupBox.Controls.Add(this.boxPlotChart);
125      this.groupBox.Controls.Add(this.valueTextBox);
126      this.groupBox.Controls.Add(this.trackBar);
127      this.groupBox.Location = new System.Drawing.Point(3, 3);
128      this.groupBox.Name = "groupBox";
129      this.groupBox.Size = new System.Drawing.Size(111, 328);
130      this.groupBox.TabIndex = 4;
131      this.groupBox.TabStop = false;
132      this.groupBox.Text = "groupBox";
133      //
134      // VariableTrackbar
135      //
136      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
137      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
138      this.Controls.Add(this.groupBox);
139      this.Name = "VariableTrackbar";
140      this.Size = new System.Drawing.Size(117, 334);
141      ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
142      ((System.ComponentModel.ISupportInitialize)(this.boxPlotChart)).EndInit();
143      this.groupBox.ResumeLayout(false);
144      this.groupBox.PerformLayout();
145      this.ResumeLayout(false);
146
147    }
148
149    #endregion
150
151    private System.Windows.Forms.Label valueLabel;
152    private System.Windows.Forms.TextBox valueTextBox;
153    private System.Windows.Forms.TrackBar trackBar;
154    private System.Windows.Forms.DataVisualization.Charting.Chart boxPlotChart;
155    private System.Windows.Forms.GroupBox groupBox;
156  }
157}
Note: See TracBrowser for help on using the repository browser.