Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13837 was 13837, checked in by pfleck, 8 years ago

#2597:

  • Reverted UpdateAutomatically property.
  • Made UpdateChart method async to avoid blocking the GUI thread.
  • Changed Content type of RegressionSolutionGradientView to IRegressionSolution.
File size: 6.0 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 = true;
84      this.gradientChart.ShowXAxisLabel = true;
85      this.gradientChart.ShowYAxisLabel = true;
86      this.gradientChart.Size = new System.Drawing.Size(715, 376);
87      this.gradientChart.TabIndex = 0;
88      this.gradientChart.TrainingMax = 1.7976931348623157E+308D;
89      this.gradientChart.TrainingMin = -1.7976931348623157E+308D;
90      this.gradientChart.XAxisTicks = 10;
91      this.gradientChart.YXAxisTicks = 5;
92      //
93      // configurationGroupBox
94      //
95      this.configurationGroupBox.Controls.Add(this.tableLayoutPanel);
96      this.configurationGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
97      this.configurationGroupBox.Location = new System.Drawing.Point(0, 0);
98      this.configurationGroupBox.Name = "configurationGroupBox";
99      this.configurationGroupBox.Size = new System.Drawing.Size(715, 211);
100      this.configurationGroupBox.TabIndex = 1;
101      this.configurationGroupBox.TabStop = false;
102      this.configurationGroupBox.Text = "Configuration";
103      //
104      // tableLayoutPanel
105      //
106      this.tableLayoutPanel.AutoScroll = true;
107      this.tableLayoutPanel.ColumnCount = 1;
108      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
109      this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
110      this.tableLayoutPanel.Location = new System.Drawing.Point(3, 16);
111      this.tableLayoutPanel.Name = "tableLayoutPanel";
112      this.tableLayoutPanel.RowCount = 1;
113      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
114      this.tableLayoutPanel.Size = new System.Drawing.Size(709, 192);
115      this.tableLayoutPanel.TabIndex = 0;
116      //
117      // RegressionSolutionGradientView
118      //
119      this.AllowDrop = true;
120      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
121      this.Controls.Add(this.splitContainer);
122      this.Name = "RegressionSolutionGradientView";
123      this.Size = new System.Drawing.Size(715, 591);
124      this.splitContainer.Panel1.ResumeLayout(false);
125      this.splitContainer.Panel2.ResumeLayout(false);
126      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
127      this.splitContainer.ResumeLayout(false);
128      this.configurationGroupBox.ResumeLayout(false);
129      this.ResumeLayout(false);
130
131    }
132
133    #endregion
134    private System.Windows.Forms.SplitContainer splitContainer;
135    private System.Windows.Forms.GroupBox configurationGroupBox;
136    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
137    private Problems.DataAnalysis.Views.GradientChart gradientChart;
138  }
139}
Note: See TracBrowser for help on using the repository browser.