Changeset 10304
- Timestamp:
- 01/08/14 14:25:28 (11 years ago)
- 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 86 86 public new PreprocessingContext Content { 87 87 get { return (PreprocessingContext)base.Content; } 88 set { 88 set { 89 89 base.Content = value; 90 90 } … … 104 104 } 105 105 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) { 107 111 IPreprocessingData Data = Content.Data; 108 112 … … 133 137 MainFormManager.MainForm.ShowContent(item); 134 138 } 139 135 140 } 136 141 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.designer.cs
r10303 r10304 27 27 this.contentListView = new System.Windows.Forms.ListView(); 28 28 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(); 31 31 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); 32 32 this.splitContainer1.Panel1.SuspendLayout(); … … 48 48 // 49 49 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); 52 52 this.splitContainer1.Size = new System.Drawing.Size(838, 449); 53 53 this.splitContainer1.SplitterDistance = 278; … … 84 84 this.viewHost.ViewType = null; 85 85 // 86 // saveButton86 // exportProblemButton 87 87 // 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); 95 96 // 96 // tryOutAlgorithmButton97 // applyInNewTabButton 97 98 // 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); 106 107 // 107 108 // DataPreprocessingView … … 124 125 private System.Windows.Forms.SplitContainer splitContainer1; 125 126 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; 128 129 private MainForm.WindowsForms.ViewHost viewHost; 129 130
Note: See TracChangeset
for help on using the changeset viewer.