Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/RegressionProblemDataView.Designer.cs @ 3309

Last change on this file since 3309 was 3309, checked in by mkommend, 14 years ago

added DataSetChanged event in RegressionProblemData and adapted RegressionProblemDataView to show the included dataset (ticket #983)

File size: 4.7 KB
RevLine 
[3294]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Regression {
23  partial class RegressionProblemDataView {
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) {
35        if (openFileDialog != null) openFileDialog.Dispose();
36        if (components != null) 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();
[3309]49      this.datasetView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
[3294]50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
51      this.SuspendLayout();
52      //
53      // nameTextBox
54      //
55      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
56      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
57      this.nameTextBox.Size = new System.Drawing.Size(457, 20);
58      //
59      // descriptionTextBox
60      //
61      this.descriptionTextBox.Size = new System.Drawing.Size(457, 20);
62      //
63      // importButton
64      //
65      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
66                  | System.Windows.Forms.AnchorStyles.Right)));
67      this.importButton.Location = new System.Drawing.Point(0, 399);
68      this.importButton.Name = "importButton";
69      this.importButton.Size = new System.Drawing.Size(529, 23);
70      this.importButton.TabIndex = 5;
71      this.importButton.Text = "&Import from CSV file";
72      this.importButton.UseVisualStyleBackColor = true;
73      this.importButton.Click += new System.EventHandler(this.importButton_Click);
74      //
[3309]75      // datasetView
[3294]76      //
[3309]77      this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
[3294]78                  | System.Windows.Forms.AnchorStyles.Left)
79                  | System.Windows.Forms.AnchorStyles.Right)));
[3309]80      this.datasetView.Caption = "StringConvertibleMatrix View";
81      this.datasetView.Content = null;
82      this.datasetView.Location = new System.Drawing.Point(0, 52);
83      this.datasetView.Name = "datasetView";
84      this.datasetView.Size = new System.Drawing.Size(526, 341);
85      this.datasetView.TabIndex = 6;
[3294]86      //
[3309]87      // RegressionProblemDataView
[3294]88      //
89      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
90      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
91      this.Controls.Add(this.importButton);
[3309]92      this.Controls.Add(this.datasetView);
93      this.Name = "RegressionProblemDataView";
[3294]94      this.Size = new System.Drawing.Size(529, 422);
[3309]95      this.Controls.SetChildIndex(this.datasetView, 0);
[3294]96      this.Controls.SetChildIndex(this.importButton, 0);
97      this.Controls.SetChildIndex(this.nameLabel, 0);
98      this.Controls.SetChildIndex(this.descriptionLabel, 0);
99      this.Controls.SetChildIndex(this.nameTextBox, 0);
100      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
101      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
102      this.ResumeLayout(false);
103      this.PerformLayout();
104
105    }
106
107    #endregion
108
109    private System.Windows.Forms.Button importButton;
[3309]110    private HeuristicLab.Data.Views.StringConvertibleMatrixView datasetView;
[3294]111
112  }
113}
Note: See TracBrowser for help on using the repository browser.