Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10304


Ignore:
Timestamp:
01/08/14 14:25:28 (10 years ago)
Author:
tsteinre
Message:

changed Button names in DataPreprocessingView

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.cs

    r10303 r10304  
    8686    public new PreprocessingContext Content {
    8787      get { return (PreprocessingContext)base.Content; }
    88       set { 
     88      set {
    8989        base.Content = value;
    9090      }
     
    104104    }
    105105
    106     private void tryOutAlgorithmButton_Click(object sender, EventArgs e) {
     106    private void exportProblemButton_Click(object sender, EventArgs e) {
     107      // TODO
     108    }
     109
     110    private void applyInNewTabButton_Click(object sender, EventArgs e) {
    107111      IPreprocessingData Data = Content.Data;
    108112
     
    133137      MainFormManager.MainForm.ShowContent(item);
    134138    }
     139
    135140  }
    136141}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.designer.cs

    r10303 r10304  
    2727      this.contentListView = new System.Windows.Forms.ListView();
    2828      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    29       this.saveButton = new System.Windows.Forms.Button();
    30       this.tryOutAlgorithmButton = new System.Windows.Forms.Button();
     29      this.exportProblemButton = new System.Windows.Forms.Button();
     30      this.applyInNewTabButton = new System.Windows.Forms.Button();
    3131      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
    3232      this.splitContainer1.Panel1.SuspendLayout();
     
    4848      //
    4949      this.splitContainer1.Panel2.Controls.Add(this.viewHost);
    50       this.splitContainer1.Panel2.Controls.Add(this.saveButton);
    51       this.splitContainer1.Panel2.Controls.Add(this.tryOutAlgorithmButton);
     50      this.splitContainer1.Panel2.Controls.Add(this.exportProblemButton);
     51      this.splitContainer1.Panel2.Controls.Add(this.applyInNewTabButton);
    5252      this.splitContainer1.Size = new System.Drawing.Size(838, 449);
    5353      this.splitContainer1.SplitterDistance = 278;
     
    8484      this.viewHost.ViewType = null;
    8585      //
    86       // saveButton
     86      // exportProblemButton
    8787      //
    88       this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    89       this.saveButton.Location = new System.Drawing.Point(343, 410);
    90       this.saveButton.Name = "saveButton";
    91       this.saveButton.Size = new System.Drawing.Size(75, 23);
    92       this.saveButton.TabIndex = 3;
    93       this.saveButton.Text = "Save";
    94       this.saveButton.UseVisualStyleBackColor = true;
     88      this.exportProblemButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     89      this.exportProblemButton.Location = new System.Drawing.Point(318, 410);
     90      this.exportProblemButton.Name = "exportProblemButton";
     91      this.exportProblemButton.Size = new System.Drawing.Size(100, 23);
     92      this.exportProblemButton.TabIndex = 3;
     93      this.exportProblemButton.Text = "Export Problem";
     94      this.exportProblemButton.UseVisualStyleBackColor = true;
     95      this.exportProblemButton.Click += new System.EventHandler(this.exportProblemButton_Click);
    9596      //
    96       // tryOutAlgorithmButton
     97      // applyInNewTabButton
    9798      //
    98       this.tryOutAlgorithmButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    99       this.tryOutAlgorithmButton.Location = new System.Drawing.Point(443, 410);
    100       this.tryOutAlgorithmButton.Name = "tryOutAlgorithmButton";
    101       this.tryOutAlgorithmButton.Size = new System.Drawing.Size(97, 23);
    102       this.tryOutAlgorithmButton.TabIndex = 2;
    103       this.tryOutAlgorithmButton.Text = "Try Out Algorithm";
    104       this.tryOutAlgorithmButton.UseVisualStyleBackColor = true;
    105       this.tryOutAlgorithmButton.Click += new System.EventHandler(this.tryOutAlgorithmButton_Click);
     99      this.applyInNewTabButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     100      this.applyInNewTabButton.Location = new System.Drawing.Point(432, 410);
     101      this.applyInNewTabButton.Name = "applyInNewTabButton";
     102      this.applyInNewTabButton.Size = new System.Drawing.Size(108, 23);
     103      this.applyInNewTabButton.TabIndex = 2;
     104      this.applyInNewTabButton.Text = "Apply in new Tab";
     105      this.applyInNewTabButton.UseVisualStyleBackColor = true;
     106      this.applyInNewTabButton.Click += new System.EventHandler(this.applyInNewTabButton_Click);
    106107      //
    107108      // DataPreprocessingView
     
    124125    private System.Windows.Forms.SplitContainer splitContainer1;
    125126    private System.Windows.Forms.ListView contentListView;
    126     private System.Windows.Forms.Button saveButton;
    127     private System.Windows.Forms.Button tryOutAlgorithmButton;
     127    private System.Windows.Forms.Button exportProblemButton;
     128    private System.Windows.Forms.Button applyInNewTabButton;
    128129    private MainForm.WindowsForms.ViewHost viewHost;
    129130
Note: See TracChangeset for help on using the changeset viewer.