1 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
2 | partial class VariableTrackbar {
|
---|
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 | System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
|
---|
27 | System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
|
---|
28 | System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
|
---|
29 | this.valueLabel = new System.Windows.Forms.Label();
|
---|
30 | this.valueTextBox = new System.Windows.Forms.TextBox();
|
---|
31 | this.trackBar = new System.Windows.Forms.TrackBar();
|
---|
32 | this.boxPlotChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
|
---|
33 | this.groupBox = new System.Windows.Forms.GroupBox();
|
---|
34 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
|
---|
35 | ((System.ComponentModel.ISupportInitialize)(this.boxPlotChart)).BeginInit();
|
---|
36 | this.groupBox.SuspendLayout();
|
---|
37 | this.SuspendLayout();
|
---|
38 | //
|
---|
39 | // valueLabel
|
---|
40 | //
|
---|
41 | this.valueLabel.AutoSize = true;
|
---|
42 | this.valueLabel.Location = new System.Drawing.Point(6, 22);
|
---|
43 | this.valueLabel.Name = "valueLabel";
|
---|
44 | this.valueLabel.Size = new System.Drawing.Size(37, 13);
|
---|
45 | this.valueLabel.TabIndex = 0;
|
---|
46 | this.valueLabel.Text = "Value:";
|
---|
47 | //
|
---|
48 | // valueTextBox
|
---|
49 | //
|
---|
50 | this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
51 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
52 | this.valueTextBox.Location = new System.Drawing.Point(49, 19);
|
---|
53 | this.valueTextBox.Name = "valueTextBox";
|
---|
54 | this.valueTextBox.ReadOnly = true;
|
---|
55 | this.valueTextBox.Size = new System.Drawing.Size(56, 20);
|
---|
56 | this.valueTextBox.TabIndex = 1;
|
---|
57 | //
|
---|
58 | // trackBar
|
---|
59 | //
|
---|
60 | this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
61 | | System.Windows.Forms.AnchorStyles.Left)));
|
---|
62 | this.trackBar.Location = new System.Drawing.Point(6, 45);
|
---|
63 | this.trackBar.Name = "trackBar";
|
---|
64 | this.trackBar.Orientation = System.Windows.Forms.Orientation.Vertical;
|
---|
65 | this.trackBar.Size = new System.Drawing.Size(45, 277);
|
---|
66 | this.trackBar.TabIndex = 2;
|
---|
67 | this.trackBar.TickStyle = System.Windows.Forms.TickStyle.None;
|
---|
68 | this.trackBar.ValueChanged += new System.EventHandler(this.TrackBarValueChanged);
|
---|
69 | //
|
---|
70 | // boxPlotChart
|
---|
71 | //
|
---|
72 | this.boxPlotChart.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
73 | | System.Windows.Forms.AnchorStyles.Left)));
|
---|
74 | this.boxPlotChart.BackColor = System.Drawing.SystemColors.Control;
|
---|
75 | chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
|
---|
76 | chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
|
---|
77 | chartArea1.BackColor = System.Drawing.SystemColors.Control;
|
---|
78 | chartArea1.BackSecondaryColor = System.Drawing.Color.White;
|
---|
79 | chartArea1.Name = "ChartArea";
|
---|
80 | this.boxPlotChart.ChartAreas.Add(chartArea1);
|
---|
81 | this.boxPlotChart.Location = new System.Drawing.Point(39, 45);
|
---|
82 | this.boxPlotChart.Name = "boxPlotChart";
|
---|
83 | series1.ChartArea = "ChartArea";
|
---|
84 | series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
|
---|
85 | series1.Name = "BoxPlot";
|
---|
86 | series1.YValuesPerPoint = 6;
|
---|
87 | series2.ChartArea = "ChartArea";
|
---|
88 | series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
|
---|
89 | series2.Enabled = false;
|
---|
90 | series2.Name = "DataSeries";
|
---|
91 | this.boxPlotChart.Series.Add(series1);
|
---|
92 | this.boxPlotChart.Series.Add(series2);
|
---|
93 | this.boxPlotChart.Size = new System.Drawing.Size(66, 277);
|
---|
94 | this.boxPlotChart.TabIndex = 3;
|
---|
95 | this.boxPlotChart.Text = "boxPlotChart";
|
---|
96 | //
|
---|
97 | // groupBox
|
---|
98 | //
|
---|
99 | this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
100 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
101 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
102 | this.groupBox.Controls.Add(this.valueLabel);
|
---|
103 | this.groupBox.Controls.Add(this.boxPlotChart);
|
---|
104 | this.groupBox.Controls.Add(this.valueTextBox);
|
---|
105 | this.groupBox.Controls.Add(this.trackBar);
|
---|
106 | this.groupBox.Location = new System.Drawing.Point(3, 3);
|
---|
107 | this.groupBox.Name = "groupBox";
|
---|
108 | this.groupBox.Size = new System.Drawing.Size(111, 328);
|
---|
109 | this.groupBox.TabIndex = 4;
|
---|
110 | this.groupBox.TabStop = false;
|
---|
111 | this.groupBox.Text = "groupBox";
|
---|
112 | //
|
---|
113 | // VariableTrackbar
|
---|
114 | //
|
---|
115 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
116 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
117 | this.Controls.Add(this.groupBox);
|
---|
118 | this.Name = "VariableTrackbar";
|
---|
119 | this.Size = new System.Drawing.Size(117, 334);
|
---|
120 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
|
---|
121 | ((System.ComponentModel.ISupportInitialize)(this.boxPlotChart)).EndInit();
|
---|
122 | this.groupBox.ResumeLayout(false);
|
---|
123 | this.groupBox.PerformLayout();
|
---|
124 | this.ResumeLayout(false);
|
---|
125 |
|
---|
126 | }
|
---|
127 |
|
---|
128 | #endregion
|
---|
129 |
|
---|
130 | private System.Windows.Forms.Label valueLabel;
|
---|
131 | private System.Windows.Forms.TextBox valueTextBox;
|
---|
132 | private System.Windows.Forms.TrackBar trackBar;
|
---|
133 | private System.Windows.Forms.DataVisualization.Charting.Chart boxPlotChart;
|
---|
134 | private System.Windows.Forms.GroupBox groupBox;
|
---|
135 | }
|
---|
136 | }
|
---|