Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/25/12 10:57:42 (12 years ago)
Author:
sforsten
Message:

#1942:

  • fixed type "Shuffel"
  • removed icon and control box
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/DataAnalysisImportTypeDialog.cs

    r8599 r8693  
    2525  public partial class DataAnalysisImportTypeDialog : Form {
    2626
     27    public string Path {
     28      get { return ProblemTextBox.Text; }
     29    }
     30
    2731    public DataAnalysisImportType ImportType {
    2832      get {
    2933        return new DataAnalysisImportType() {
    30           Shuffle = ShuffelDataCheckbox.Checked,
     34          Shuffle = ShuffleDataCheckbox.Checked,
    3135          Training = TrainingTestTrackBar.Value
    3236        };
     
    4246      TestLabel.Text = "Test: " + (TrainingTestTrackBar.Maximum - TrainingTestTrackBar.Value) + " %";
    4347    }
     48
     49    private void openFileButton_Click(object sender, System.EventArgs e) {
     50      if (openFileDialog.ShowDialog(this) == DialogResult.OK) {
     51        ProblemTextBox.Text = openFileDialog.FileName;
     52        OkButton.Enabled = true;
     53      }
     54    }
    4455  }
    4556}
Note: See TracChangeset for help on using the changeset viewer.