Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.Designer.cs @ 10175

Last change on this file since 10175 was 10175, checked in by mkommend, 10 years ago

#1758: Added button to load new data into data analysis solutions.

File size: 5.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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
23namespace HeuristicLab.Problems.DataAnalysis.Views {
24  partial class DataAnalysisSolutionView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.exportButton = new System.Windows.Forms.Button();
49      this.exportFileDialog = new System.Windows.Forms.SaveFileDialog();
50      this.loadProblemDataButton = new System.Windows.Forms.Button();
51      this.loadProblemDataFileDialog = new System.Windows.Forms.OpenFileDialog();
52      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
53      this.splitContainer.Panel1.SuspendLayout();
54      this.splitContainer.Panel2.SuspendLayout();
55      this.splitContainer.SuspendLayout();
56      this.itemsGroupBox.SuspendLayout();
57      this.detailsGroupBox.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // splitContainer
61      //
62      //
63      // splitContainer.Panel2
64      //
65      this.splitContainer.Panel2.Controls.Add(this.loadProblemDataButton);
66      this.splitContainer.Panel2.Controls.Add(this.exportButton);
67      //
68      // itemsGroupBox
69      //
70      this.itemsGroupBox.Text = "Data Analysis Solution";
71      //
72      // addButton
73      //
74      this.toolTip.SetToolTip(this.addButton, "Add");
75      //
76      // removeButton
77      //
78      this.toolTip.SetToolTip(this.removeButton, "Remove");
79      //
80      // exportButton
81      //
82      this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
83      this.exportButton.Location = new System.Drawing.Point(194, 3);
84      this.exportButton.Name = "exportButton";
85      this.exportButton.Size = new System.Drawing.Size(75, 24);
86      this.exportButton.TabIndex = 6;
87      this.exportButton.Text = "Export";
88      this.exportButton.UseVisualStyleBackColor = true;
89      this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
90      //
91      // loadProblemDataButton
92      //
93      this.loadProblemDataButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
94      this.loadProblemDataButton.Location = new System.Drawing.Point(3, 3);
95      this.loadProblemDataButton.Name = "loadProblemDataButton";
96      this.loadProblemDataButton.Size = new System.Drawing.Size(75, 24);
97      this.loadProblemDataButton.TabIndex = 7;
98      this.loadProblemDataButton.Text = "Load Data";
99      this.loadProblemDataButton.UseVisualStyleBackColor = true;
100      this.loadProblemDataButton.Click += new System.EventHandler(this.loadProblemDataButton_Click);
101      this.toolTip.SetToolTip(this.loadProblemDataButton, "Load new data");
102      //
103      // openFileDialog
104      //
105      this.loadProblemDataFileDialog.Filter = "HL files|*.hl";
106      this.loadProblemDataFileDialog.Title = "Load new ProblemData or Problem...";
107      //
108      // DataAnalysisSolutionView
109      //
110      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
111      this.Name = "DataAnalysisSolutionView";
112      this.splitContainer.Panel1.ResumeLayout(false);
113      this.splitContainer.Panel2.ResumeLayout(false);
114      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
115      this.splitContainer.ResumeLayout(false);
116      this.itemsGroupBox.ResumeLayout(false);
117      this.detailsGroupBox.ResumeLayout(false);
118      this.ResumeLayout(false);
119
120    }
121
122    #endregion
123
124    private System.Windows.Forms.SaveFileDialog exportFileDialog;
125    protected System.Windows.Forms.Button exportButton;
126    protected System.Windows.Forms.Button loadProblemDataButton;
127    protected System.Windows.Forms.OpenFileDialog loadProblemDataFileDialog;
128
129  }
130}
Note: See TracBrowser for help on using the repository browser.