Changeset 7183 for branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views
- Timestamp:
- 12/13/11 13:52:22 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/TimeSeriesPrognosisSolutionView.Designer.cs
r7160 r7183 75 75 // itemsListView 76 76 // 77 this.itemsListView.Size = new System.Drawing.Size(244, 240);77 this.itemsListView.Size = new System.Drawing.Size(244, 153); 78 78 // 79 79 // detailsGroupBox 80 80 // 81 this.detailsGroupBox.Size = new System.Drawing.Size(266, 248);81 this.detailsGroupBox.Size = new System.Drawing.Size(266, 161); 82 82 // 83 83 // addButton … … 91 91 // viewHost 92 92 // 93 this.viewHost.Size = new System.Drawing.Size(254, 223);93 this.viewHost.Size = new System.Drawing.Size(254, 136); 94 94 // 95 95 // horizonTextBox … … 99 99 this.horizonTextBox.Size = new System.Drawing.Size(100, 20); 100 100 this.horizonTextBox.TabIndex = 1; 101 this.horizonTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.horizonTextBox_KeyDown); 101 102 this.horizonTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.horizonTextBox_Validating); 102 103 this.horizonTextBox.Validated += new System.EventHandler(this.horizonTextBox_Validated); -
branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/TimeSeriesPrognosisSolutionView.cs
r7160 r7183 73 73 Content.Horizon = val; 74 74 } 75 76 private void horizonTextBox_KeyDown(object sender, KeyEventArgs e) { 77 if (e.KeyCode == Keys.Enter) { 78 e.Handled = true; 79 this.Focus(); 80 } else { 81 e.Handled = false; 82 } 83 } 84 75 85 } 76 86 }
Note: See TracChangeset
for help on using the changeset viewer.