Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionGradientView.Designer.cs @ 14166

Last change on this file since 14166 was 14166, checked in by mkommend, 8 years ago

#2597: Merged r14095, r14096, r14098, r14099, r14118, r14119, r14131, r14157, r14158 into stable.

File size: 5.7 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 RegressionSolutionGradientView {
24    /// <summary>
25    /// Required designer variableNames.
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.splitContainer = new System.Windows.Forms.SplitContainer();
48      this.gradientChart = new HeuristicLab.Problems.DataAnalysis.Views.GradientChart();
49      this.configurationGroupBox = new System.Windows.Forms.GroupBox();
50      this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
51      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
52      this.splitContainer.Panel1.SuspendLayout();
53      this.splitContainer.Panel2.SuspendLayout();
54      this.splitContainer.SuspendLayout();
55      this.configurationGroupBox.SuspendLayout();
56      this.SuspendLayout();
57      //
58      // splitContainer
59      //
60      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
61      this.splitContainer.Location = new System.Drawing.Point(0, 0);
62      this.splitContainer.Name = "splitContainer";
63      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
64      //
65      // splitContainer.Panel1
66      //
67      this.splitContainer.Panel1.Controls.Add(this.gradientChart);
68      //
69      // splitContainer.Panel2
70      //
71      this.splitContainer.Panel2.Controls.Add(this.configurationGroupBox);
72      this.splitContainer.Size = new System.Drawing.Size(715, 591);
73      this.splitContainer.SplitterDistance = 376;
74      this.splitContainer.TabIndex = 1;
75      //
76      // gradientChart
77      //
78      this.gradientChart.Dock = System.Windows.Forms.DockStyle.Fill;
79      this.gradientChart.DrawingSteps = 1000;
80      this.gradientChart.Location = new System.Drawing.Point(0, 0);
81      this.gradientChart.Name = "gradientChart";
82      this.gradientChart.ShowCursor = false;
83      this.gradientChart.ShowLegend = false;
84      this.gradientChart.Size = new System.Drawing.Size(715, 376);
85      this.gradientChart.TabIndex = 0;
86      this.gradientChart.XAxisTicks = 10;
87      this.gradientChart.YAxisTicks = 5;
88      //
89      // configurationGroupBox
90      //
91      this.configurationGroupBox.Controls.Add(this.tableLayoutPanel);
92      this.configurationGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
93      this.configurationGroupBox.Location = new System.Drawing.Point(0, 0);
94      this.configurationGroupBox.Name = "configurationGroupBox";
95      this.configurationGroupBox.Size = new System.Drawing.Size(715, 211);
96      this.configurationGroupBox.TabIndex = 1;
97      this.configurationGroupBox.TabStop = false;
98      this.configurationGroupBox.Text = "Configuration";
99      //
100      // tableLayoutPanel
101      //
102      this.tableLayoutPanel.AutoScroll = true;
103      this.tableLayoutPanel.ColumnCount = 1;
104      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
105      this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
106      this.tableLayoutPanel.Location = new System.Drawing.Point(3, 16);
107      this.tableLayoutPanel.Name = "tableLayoutPanel";
108      this.tableLayoutPanel.RowCount = 1;
109      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
110      this.tableLayoutPanel.Size = new System.Drawing.Size(709, 192);
111      this.tableLayoutPanel.TabIndex = 0;
112      //
113      // RegressionSolutionGradientView
114      //
115      this.AllowDrop = true;
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
117      this.Controls.Add(this.splitContainer);
118      this.Name = "RegressionSolutionGradientView";
119      this.Size = new System.Drawing.Size(715, 591);
120      this.splitContainer.Panel1.ResumeLayout(false);
121      this.splitContainer.Panel2.ResumeLayout(false);
122      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
123      this.splitContainer.ResumeLayout(false);
124      this.configurationGroupBox.ResumeLayout(false);
125      this.ResumeLayout(false);
126
127    }
128
129    #endregion
130    private System.Windows.Forms.SplitContainer splitContainer;
131    private System.Windows.Forms.GroupBox configurationGroupBox;
132    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
133    private Problems.DataAnalysis.Views.GradientChart gradientChart;
134  }
135}
Note: See TracBrowser for help on using the repository browser.