Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/DensityTrackbar.Designer.cs @ 13825

Last change on this file since 13825 was 13824, checked in by pfleck, 9 years ago

#2597:

  • Added new Model property in IConfidenceBoundRegressionSolution.
  • Added ConfidenceBoundRegressionSolution base and methods to it from GaussianProcessRegressionSolution.
  • Replaced RegressionSolutionGradientView with GaussianProcessRegressionSolutionInteractiveRangeEstimatorView. Also moved DensityTrackbar to Problems.DataAnalysis.Views Plugin.
  • DensityTrackbar initial position is now where the density is highest.
File size: 7.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.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      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
49      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
50      this.radioButton = new System.Windows.Forms.RadioButton();
51      this.trackBar = new System.Windows.Forms.TrackBar();
52      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
53      this.textBox = new System.Windows.Forms.TextBox();
54      this.groupBox = new System.Windows.Forms.GroupBox();
55      this.doubleLimitView = new HeuristicLab.Problems.DataAnalysis.Views.DoubleLimitView();
56      ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
57      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
58      this.groupBox.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // radioButton
62      //
63      this.radioButton.Location = new System.Drawing.Point(6, 11);
64      this.radioButton.Name = "radioButton";
65      this.radioButton.Size = new System.Drawing.Size(132, 17);
66      this.radioButton.TabIndex = 0;
67      this.radioButton.TabStop = true;
68      this.radioButton.Text = "<Name>";
69      this.radioButton.UseVisualStyleBackColor = true;
70      this.radioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
71      //
72      // trackBar
73      //
74      this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
75            | System.Windows.Forms.AnchorStyles.Right)));
76      this.trackBar.BackColor = System.Drawing.Color.White;
77      this.trackBar.LargeChange = 100;
78      this.trackBar.Location = new System.Drawing.Point(144, 10);
79      this.trackBar.Maximum = 1000;
80      this.trackBar.Name = "trackBar";
81      this.trackBar.RightToLeft = System.Windows.Forms.RightToLeft.No;
82      this.trackBar.Size = new System.Drawing.Size(371, 45);
83      this.trackBar.TabIndex = 1;
84      this.trackBar.TickFrequency = 100;
85      this.trackBar.Value = 500;
86      this.trackBar.ValueChanged += new System.EventHandler(this.trackBar_ValueChanged);
87      //
88      // chart
89      //
90      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
91            | System.Windows.Forms.AnchorStyles.Left)
92            | System.Windows.Forms.AnchorStyles.Right)));
93      this.chart.BorderlineColor = System.Drawing.Color.Transparent;
94      chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
95      chartArea1.AxisX.IsMarginVisible = false;
96      chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
97      chartArea1.AxisY.IsMarginVisible = false;
98      chartArea1.AxisY.MajorTickMark.Enabled = false;
99      chartArea1.AxisY.Minimum = 0D;
100      chartArea1.BackColor = System.Drawing.Color.Transparent;
101      chartArea1.BorderColor = System.Drawing.Color.Transparent;
102      chartArea1.Name = "ChartArea1";
103      chartArea1.Position.Auto = false;
104      chartArea1.Position.Height = 100F;
105      chartArea1.Position.Width = 100F;
106      this.chart.ChartAreas.Add(chartArea1);
107      this.chart.Location = new System.Drawing.Point(156, 35);
108      this.chart.Name = "chart";
109      series1.ChartArea = "ChartArea1";
110      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StepLine;
111      series1.Name = "Default";
112      this.chart.Series.Add(series1);
113      this.chart.Size = new System.Drawing.Size(345, 20);
114      this.chart.TabIndex = 3;
115      this.chart.Text = "Density";
116      //
117      // textBox
118      //
119      this.textBox.Location = new System.Drawing.Point(6, 35);
120      this.textBox.Name = "textBox";
121      this.textBox.ReadOnly = true;
122      this.textBox.Size = new System.Drawing.Size(132, 20);
123      this.textBox.TabIndex = 4;
124      //
125      // groupBox
126      //
127      this.groupBox.Controls.Add(this.radioButton);
128      this.groupBox.Controls.Add(this.doubleLimitView);
129      this.groupBox.Controls.Add(this.chart);
130      this.groupBox.Controls.Add(this.trackBar);
131      this.groupBox.Controls.Add(this.textBox);
132      this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
133      this.groupBox.Location = new System.Drawing.Point(0, 0);
134      this.groupBox.Name = "groupBox";
135      this.groupBox.Size = new System.Drawing.Size(678, 62);
136      this.groupBox.TabIndex = 5;
137      this.groupBox.TabStop = false;
138      //
139      // doubleLimitView
140      //
141      this.doubleLimitView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
142      this.doubleLimitView.Caption = "DoubleLimit View";
143      this.doubleLimitView.Content = null;
144      this.doubleLimitView.Location = new System.Drawing.Point(521, 10);
145      this.doubleLimitView.Name = "doubleLimitView";
146      this.doubleLimitView.ReadOnly = false;
147      this.doubleLimitView.Size = new System.Drawing.Size(151, 47);
148      this.doubleLimitView.TabIndex = 2;
149      //
150      // DensityTrackbar
151      //
152      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
153      this.Controls.Add(this.groupBox);
154      this.Name = "DensityTrackbar";
155      this.Size = new System.Drawing.Size(678, 62);
156      ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
157      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
158      this.groupBox.ResumeLayout(false);
159      this.groupBox.PerformLayout();
160      this.ResumeLayout(false);
161
162    }
163
164    #endregion
165
166    private System.Windows.Forms.RadioButton radioButton;
167    private System.Windows.Forms.TrackBar trackBar;
168    private Problems.DataAnalysis.Views.DoubleLimitView doubleLimitView;
169    private Visualization.ChartControlsExtensions.EnhancedChart chart;
170    private System.Windows.Forms.TextBox textBox;
171    private System.Windows.Forms.GroupBox groupBox;
172  }
173}
Note: See TracBrowser for help on using the repository browser.