Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2906_Transformations/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.Designer.cs @ 15870

Last change on this file since 15870 was 15870, checked in by pfleck, 6 years ago

#2906

  • Implemented for classification, clustering, etc.
  • Simplified Transformation interfaces (read-only, ...).
  • Started moving transformation logic out of ProblemData.
File size: 6.4 KB
Line 
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
22namespace HeuristicLab.Problems.DataAnalysis.Views {
23  partial class DataAnalysisSolutionView {
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.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
48      this.loadProblemDataButton = new System.Windows.Forms.Button();
49      this.transformButton = new System.Windows.Forms.Button();
50      this.loadProblemDataFileDialog = new System.Windows.Forms.OpenFileDialog();
51      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
52      this.splitContainer.Panel1.SuspendLayout();
53      this.splitContainer.Panel2.SuspendLayout();
54      this.splitContainer.SuspendLayout();
55      this.itemsGroupBox.SuspendLayout();
56      this.detailsGroupBox.SuspendLayout();
57      this.flowLayoutPanel.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // itemslistView
61      //
62      this.itemsListView.Location = new System.Drawing.Point(this.itemsListView.Location.X, this.itemsListView.Location.Y + 3);
63      //
64      // detailsGroupBox
65      //
66      this.detailsGroupBox.Location = new System.Drawing.Point(this.detailsGroupBox.Location.X, this.detailsGroupBox.Location.Y + 3);
67      //
68      //
69      // splitContainer
70      //
71      //
72      // splitContainer.Panel2
73      //
74      this.splitContainer.Panel2.Controls.Add(this.flowLayoutPanel);
75      //
76      // itemsGroupBox
77      //
78      this.itemsGroupBox.Text = "Data Analysis Solution";
79      //
80      // flowLayoutPanel
81      //
82      this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
83            | System.Windows.Forms.AnchorStyles.Right)));
84      this.flowLayoutPanel.Controls.Add(this.loadProblemDataButton);
85      this.flowLayoutPanel.Controls.Add(this.transformButton);
86      this.flowLayoutPanel.Location = new System.Drawing.Point(0, 0);
87      this.flowLayoutPanel.Name = "flowLayoutPanel";
88      this.flowLayoutPanel.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
89      this.flowLayoutPanel.Size = new System.Drawing.Size(266, 30);
90      this.flowLayoutPanel.TabIndex = 1;
91      //
92      // loadProblemDataButton
93      //
94      this.loadProblemDataButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
95      this.loadProblemDataButton.AutoSize = true;
96      this.loadProblemDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
97      this.loadProblemDataButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
98      this.loadProblemDataButton.Name = "loadProblemDataButton";
99      this.loadProblemDataButton.Size = new System.Drawing.Size(105, 24);
100      this.loadProblemDataButton.TabIndex = 6;
101      this.loadProblemDataButton.Text = "Load new Data";
102      this.loadProblemDataButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
103      this.loadProblemDataButton.UseVisualStyleBackColor = true;
104      this.loadProblemDataButton.Click += new System.EventHandler(this.loadProblemDataButton_Click);
105      //
106      // transformButton
107      //
108      this.transformButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
109      this.transformButton.Location = new System.Drawing.Point(6, 33);
110      this.transformButton.Name = "transformButton";
111      this.transformButton.Size = new System.Drawing.Size(152, 23);
112      this.transformButton.TabIndex = 7;
113      this.transformButton.Text = "Integrate Transformations";
114      this.transformButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
115      this.transformButton.UseVisualStyleBackColor = true;
116      this.transformButton.Click += new System.EventHandler(this.transformButton_Click);
117      //
118      // loadProblemDataFileDialog
119      //
120      this.loadProblemDataFileDialog.Filter = "HL files|*.hl";
121      this.loadProblemDataFileDialog.Title = "Load new ProblemData or Problem...";
122      //
123      // DataAnalysisSolutionView
124      //
125      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
126      this.Name = "DataAnalysisSolutionView";
127      this.splitContainer.Panel1.ResumeLayout(false);
128      this.splitContainer.Panel2.ResumeLayout(false);
129      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
130      this.splitContainer.ResumeLayout(false);
131      this.itemsGroupBox.ResumeLayout(false);
132      this.detailsGroupBox.ResumeLayout(false);
133      this.flowLayoutPanel.ResumeLayout(false);
134      this.flowLayoutPanel.PerformLayout();
135      this.ResumeLayout(false);
136
137    }
138
139    #endregion
140
141    protected System.Windows.Forms.Button loadProblemDataButton;
142    protected System.Windows.Forms.OpenFileDialog loadProblemDataFileDialog;
143    protected System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
144    protected System.Windows.Forms.Button transformButton;
145  }
146}
Note: See TracBrowser for help on using the repository browser.