1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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 |
|
---|
22 | namespace HeuristicLab.Algorithms.DataAnalysis.Views {
|
---|
23 | partial class DensityTrackbar {
|
---|
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 | this.components = new System.ComponentModel.Container();
|
---|
48 | this.radioButton = new System.Windows.Forms.RadioButton();
|
---|
49 | this.trackBar = new System.Windows.Forms.TrackBar();
|
---|
50 | this.chart = new HeuristicLab.Problems.DataAnalysis.Views.DensityChart();
|
---|
51 | this.textBox = new System.Windows.Forms.TextBox();
|
---|
52 | this.groupBox = new System.Windows.Forms.GroupBox();
|
---|
53 | this.doubleLimitView = new HeuristicLab.Problems.DataAnalysis.Views.DoubleLimitView();
|
---|
54 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
55 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
|
---|
56 | this.groupBox.SuspendLayout();
|
---|
57 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
58 | this.SuspendLayout();
|
---|
59 | //
|
---|
60 | // radioButton
|
---|
61 | //
|
---|
62 | this.radioButton.Location = new System.Drawing.Point(6, 11);
|
---|
63 | this.radioButton.Name = "radioButton";
|
---|
64 | this.radioButton.Size = new System.Drawing.Size(132, 17);
|
---|
65 | this.radioButton.TabIndex = 0;
|
---|
66 | this.radioButton.TabStop = true;
|
---|
67 | this.radioButton.Text = "<Name>";
|
---|
68 | this.radioButton.UseVisualStyleBackColor = true;
|
---|
69 | this.radioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
|
---|
70 | //
|
---|
71 | // trackBar
|
---|
72 | //
|
---|
73 | this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
74 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
75 | this.trackBar.BackColor = System.Drawing.Color.White;
|
---|
76 | this.trackBar.LargeChange = 100;
|
---|
77 | this.trackBar.Location = new System.Drawing.Point(144, 10);
|
---|
78 | this.trackBar.Maximum = 1000;
|
---|
79 | this.trackBar.Name = "trackBar";
|
---|
80 | this.trackBar.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
---|
81 | this.trackBar.Size = new System.Drawing.Size(371, 45);
|
---|
82 | this.trackBar.TabIndex = 1;
|
---|
83 | this.trackBar.TickFrequency = 100;
|
---|
84 | this.trackBar.Value = 500;
|
---|
85 | this.trackBar.ValueChanged += new System.EventHandler(this.trackBar_ValueChanged);
|
---|
86 | //
|
---|
87 | // chart
|
---|
88 | //
|
---|
89 | this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
90 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
91 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
92 | this.chart.Location = new System.Drawing.Point(156, 35);
|
---|
93 | this.chart.Name = "chart";
|
---|
94 | this.chart.Size = new System.Drawing.Size(345, 20);
|
---|
95 | this.chart.TabIndex = 3;
|
---|
96 | //
|
---|
97 | // textBox
|
---|
98 | //
|
---|
99 | this.textBox.Location = new System.Drawing.Point(6, 35);
|
---|
100 | this.textBox.Name = "textBox";
|
---|
101 | this.textBox.Size = new System.Drawing.Size(132, 20);
|
---|
102 | this.textBox.TabIndex = 4;
|
---|
103 | this.textBox.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
|
---|
104 | this.textBox.Validated += new System.EventHandler(this.textBox_Validated);
|
---|
105 | //
|
---|
106 | // groupBox
|
---|
107 | //
|
---|
108 | this.groupBox.Controls.Add(this.radioButton);
|
---|
109 | this.groupBox.Controls.Add(this.doubleLimitView);
|
---|
110 | this.groupBox.Controls.Add(this.chart);
|
---|
111 | this.groupBox.Controls.Add(this.trackBar);
|
---|
112 | this.groupBox.Controls.Add(this.textBox);
|
---|
113 | this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
114 | this.groupBox.Location = new System.Drawing.Point(0, 0);
|
---|
115 | this.groupBox.Name = "groupBox";
|
---|
116 | this.groupBox.Size = new System.Drawing.Size(678, 62);
|
---|
117 | this.groupBox.TabIndex = 5;
|
---|
118 | this.groupBox.TabStop = false;
|
---|
119 | //
|
---|
120 | // doubleLimitView
|
---|
121 | //
|
---|
122 | this.doubleLimitView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
123 | this.doubleLimitView.Caption = "DoubleLimit View";
|
---|
124 | this.doubleLimitView.Content = null;
|
---|
125 | this.doubleLimitView.Location = new System.Drawing.Point(521, 10);
|
---|
126 | this.doubleLimitView.Name = "doubleLimitView";
|
---|
127 | this.doubleLimitView.ReadOnly = false;
|
---|
128 | this.doubleLimitView.Size = new System.Drawing.Size(151, 47);
|
---|
129 | this.doubleLimitView.TabIndex = 2;
|
---|
130 | //
|
---|
131 | // errorProvider
|
---|
132 | //
|
---|
133 | this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
|
---|
134 | this.errorProvider.ContainerControl = this;
|
---|
135 | //
|
---|
136 | // DensityTrackbar
|
---|
137 | //
|
---|
138 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
139 | this.Controls.Add(this.groupBox);
|
---|
140 | this.Name = "DensityTrackbar";
|
---|
141 | this.Size = new System.Drawing.Size(678, 62);
|
---|
142 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
|
---|
143 | this.groupBox.ResumeLayout(false);
|
---|
144 | this.groupBox.PerformLayout();
|
---|
145 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
146 | this.ResumeLayout(false);
|
---|
147 |
|
---|
148 | }
|
---|
149 |
|
---|
150 | #endregion
|
---|
151 |
|
---|
152 | private System.Windows.Forms.RadioButton radioButton;
|
---|
153 | private System.Windows.Forms.TrackBar trackBar;
|
---|
154 | private Problems.DataAnalysis.Views.DoubleLimitView doubleLimitView;
|
---|
155 | private HeuristicLab.Problems.DataAnalysis.Views.DensityChart chart;
|
---|
156 | private System.Windows.Forms.TextBox textBox;
|
---|
157 | private System.Windows.Forms.GroupBox groupBox;
|
---|
158 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
159 | }
|
---|
160 | }
|
---|