1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 | using HeuristicLab.Core;
|
---|
22 | using System.Windows.Forms;
|
---|
23 | namespace HeuristicLab.CEDMA.Server {
|
---|
24 | partial class ProblemView {
|
---|
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.importButton = new System.Windows.Forms.Button();
|
---|
49 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
50 | this.datasetView = new HeuristicLab.DataAnalysis.DatasetView();
|
---|
51 | this.SuspendLayout();
|
---|
52 | //
|
---|
53 | // importButton
|
---|
54 | //
|
---|
55 | this.importButton.Location = new System.Drawing.Point(3, 3);
|
---|
56 | this.importButton.Name = "importButton";
|
---|
57 | this.importButton.Size = new System.Drawing.Size(75, 23);
|
---|
58 | this.importButton.TabIndex = 0;
|
---|
59 | this.importButton.Text = "Import";
|
---|
60 | this.importButton.UseVisualStyleBackColor = true;
|
---|
61 | this.importButton.Click += new System.EventHandler(this.importButton_Click);
|
---|
62 | //
|
---|
63 | // openFileDialog
|
---|
64 | //
|
---|
65 | this.openFileDialog.DefaultExt = "txt";
|
---|
66 | this.openFileDialog.FileName = "txt";
|
---|
67 | this.openFileDialog.Filter = "Text files|*.txt|All files|*.*";
|
---|
68 | this.openFileDialog.Title = "Import data set from file";
|
---|
69 | //
|
---|
70 | // datasetView
|
---|
71 | //
|
---|
72 | this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
73 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
74 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
75 | this.datasetView.Caption = "Editor";
|
---|
76 | this.datasetView.Dataset = null;
|
---|
77 | this.datasetView.Filename = null;
|
---|
78 | this.datasetView.Location = new System.Drawing.Point(3, 32);
|
---|
79 | this.datasetView.Name = "datasetView";
|
---|
80 | this.datasetView.Size = new System.Drawing.Size(770, 580);
|
---|
81 | this.datasetView.TabIndex = 36;
|
---|
82 | //
|
---|
83 | // ProblemView
|
---|
84 | //
|
---|
85 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
86 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
87 | this.Controls.Add(this.datasetView);
|
---|
88 | this.Controls.Add(this.importButton);
|
---|
89 | this.Name = "ProblemView";
|
---|
90 | this.Size = new System.Drawing.Size(776, 615);
|
---|
91 | this.ResumeLayout(false);
|
---|
92 |
|
---|
93 | }
|
---|
94 |
|
---|
95 | #endregion
|
---|
96 |
|
---|
97 | private System.Windows.Forms.Button importButton;
|
---|
98 | private System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
99 | private HeuristicLab.DataAnalysis.DatasetView datasetView;
|
---|
100 | }
|
---|
101 | }
|
---|