Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 13:21:20 (10 years ago)
Author:
sbreuer
Message:
  • moved missing value functionality to ISearchLogic
  • created IStringConvertibleMatrix implementation and DataGridContentView
Location:
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Views/3.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Views/3.4/ProblemDataView.Designer.cs

    r10134 r10236  
    4747      this.FeatureCorrelationButton = new System.Windows.Forms.Button();
    4848      this.DataPreprocessingButton = new System.Windows.Forms.Button();
     49      this.button1 = new System.Windows.Forms.Button();
    4950      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5051      this.SuspendLayout();
     
    8283      this.DataPreprocessingButton.Click += new System.EventHandler(this.DataPreprocessingButton_Click);
    8384      //
     85      // button1
     86      //
     87      this.button1.Location = new System.Drawing.Point(438, 45);
     88      this.button1.Name = "button1";
     89      this.button1.Size = new System.Drawing.Size(49, 24);
     90      this.button1.TabIndex = 6;
     91      this.button1.Text = "Data Preprocessing";
     92      this.button1.UseVisualStyleBackColor = true;
     93      this.button1.Click += new System.EventHandler(this.button1_Click);
     94      //
    8495      // ProblemDataView
    8596      //
    8697      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    8798      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     99      this.Controls.Add(this.button1);
    88100      this.Controls.Add(this.DataPreprocessingButton);
    89101      this.Controls.Add(this.FeatureCorrelationButton);
     
    95107      this.Controls.SetChildIndex(this.FeatureCorrelationButton, 0);
    96108      this.Controls.SetChildIndex(this.DataPreprocessingButton, 0);
     109      this.Controls.SetChildIndex(this.button1, 0);
    97110      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    98111      this.ResumeLayout(false);
     
    105118    protected System.Windows.Forms.Button FeatureCorrelationButton;
    106119    protected System.Windows.Forms.Button DataPreprocessingButton;
     120    protected System.Windows.Forms.Button button1;
    107121
    108122  }
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Views/3.4/ProblemDataView.cs

    r10235 r10236  
    123123      return itemView.Content;
    124124    }
     125
     126    private void button1_Click(object sender, EventArgs e) {
     127      Type viewType = MainFormManager.GetViewTypes(typeof(IDataGridContent), true).FirstOrDefault(t => typeof(DataGridContentView).IsAssignableFrom(t));
     128      MainFormManager.MainForm.ShowContent(new DataGridContent(new PreprocessingData(Content)), viewType);
     129    }
    125130  }
    126131}
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Views/3.4/ProblemDataView.resx

    r10134 r10236  
    121121    <value>17, 17</value>
    122122  </metadata>
    123   <metadata name="errorProvider.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    124     <value>17, 17</value>
    125   </metadata>
    126123  <metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    127124    <value>140, 17</value>
Note: See TracChangeset for help on using the changeset viewer.