Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/10 15:49:22 (14 years ago)
Author:
gkronber
Message:

Implemented views for DataAnalysisProblems and DataAnalysisSolutions. #938 (Data types and operators for regression problems)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/DataAnalysisProblemDataView.Designer.cs

    r3373 r3442  
    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 
    22 namespace HeuristicLab.Problems.DataAnalysis {
     1namespace HeuristicLab.Problems.DataAnalysis.Views {
    232  partial class DataAnalysisProblemDataView {
    243    /// <summary>
     
    3211    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3312    protected override void Dispose(bool disposing) {
    34       if (disposing) {
    35         if (openFileDialog != null) openFileDialog.Dispose();
    36         if (components != null) components.Dispose();
     13      if (disposing && (components != null)) {
     14        components.Dispose();
    3715      }
    3816      base.Dispose(disposing);
     
    4624    /// </summary>
    4725    private void InitializeComponent() {
     26      this.variableCollectionView = new HeuristicLab.Core.Views.VariableCollectionView();
    4827      this.importButton = new System.Windows.Forms.Button();
    49       this.datasetView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
    5028      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5129      this.SuspendLayout();
     
    5533      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    5634      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    57       this.nameTextBox.Size = new System.Drawing.Size(457, 20);
    5835      //
    59       // descriptionTextBox
     36      // variableCollectionView
    6037      //
    61       this.descriptionTextBox.Size = new System.Drawing.Size(457, 20);
     38      this.variableCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     39                  | System.Windows.Forms.AnchorStyles.Left)
     40                  | System.Windows.Forms.AnchorStyles.Right)));
     41      this.variableCollectionView.Caption = "VariableCollection";
     42      this.variableCollectionView.Content = null;
     43      this.variableCollectionView.Location = new System.Drawing.Point(0, 52);
     44      this.variableCollectionView.Name = "variableCollectionView";
     45      this.variableCollectionView.ReadOnly = false;
     46      this.variableCollectionView.Size = new System.Drawing.Size(588, 366);
     47      this.variableCollectionView.TabIndex = 0;
    6248      //
    6349      // importButton
     
    6551      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
    6652                  | System.Windows.Forms.AnchorStyles.Right)));
    67       this.importButton.Location = new System.Drawing.Point(0, 399);
     53      this.importButton.Location = new System.Drawing.Point(6, 424);
    6854      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";
     55      this.importButton.Size = new System.Drawing.Size(579, 23);
     56      this.importButton.TabIndex = 4;
     57      this.importButton.Text = "Import from CSV file";
    7258      this.importButton.UseVisualStyleBackColor = true;
    7359      this.importButton.Click += new System.EventHandler(this.importButton_Click);
    7460      //
    75       // datasetView
    76       //
    77       this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    78                   | System.Windows.Forms.AnchorStyles.Left)
    79                   | System.Windows.Forms.AnchorStyles.Right)));
    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;
    86       //
    87       // RegressionProblemDataView
     61      // ProblemDataView
    8862      //
    8963      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    9064      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     65      this.Controls.Add(this.variableCollectionView);
    9166      this.Controls.Add(this.importButton);
    92       this.Controls.Add(this.datasetView);
    93       this.Name = "RegressionProblemDataView";
    94       this.Size = new System.Drawing.Size(529, 422);
    95       this.Controls.SetChildIndex(this.datasetView, 0);
     67      this.Name = "ProblemDataView";
     68      this.Size = new System.Drawing.Size(588, 450);
    9669      this.Controls.SetChildIndex(this.importButton, 0);
     70      this.Controls.SetChildIndex(this.variableCollectionView, 0);
    9771      this.Controls.SetChildIndex(this.nameLabel, 0);
    9872      this.Controls.SetChildIndex(this.descriptionLabel, 0);
     
    10781    #endregion
    10882
     83    private HeuristicLab.Core.Views.VariableCollectionView variableCollectionView;
    10984    private System.Windows.Forms.Button importButton;
    110     private HeuristicLab.Data.Views.StringConvertibleMatrixView datasetView;
    111 
    11285  }
    11386}
Note: See TracChangeset for help on using the changeset viewer.