Changeset 18180 for branches/3138_Shape_Constraints_Transformations/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4
- Timestamp:
- 01/10/22 10:15:25 (3 years ago)
- Location:
- branches/3138_Shape_Constraints_Transformations
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3138_Shape_Constraints_Transformations
- Property svn:mergeinfo changed
-
branches/3138_Shape_Constraints_Transformations/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views (added) merged: 18166
- Property svn:mergeinfo changed
-
branches/3138_Shape_Constraints_Transformations/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolView.cs
r17180 r18180 70 70 #region control event handlers 71 71 private void initialFrequencyTextBox_KeyDown(object sender, KeyEventArgs e) { 72 if ((e.KeyCode == Keys.Enter) || (e.KeyCode == Keys.Return)) 72 if ((e.KeyCode == Keys.Enter) || (e.KeyCode == Keys.Return)) { 73 73 initialFrequencyLabel.Select(); // select label to validate data 74 75 if (e.KeyCode == Keys.Escape) {74 e.SuppressKeyPress = true; 75 } else if (e.KeyCode == Keys.Escape) { 76 76 initialFrequencyTextBox.Text = Content.InitialFrequency.ToString(); 77 77 initialFrequencyLabel.Select(); // select label to validate data 78 e.SuppressKeyPress = true; 78 79 } 79 80 }
Note: See TracChangeset
for help on using the changeset viewer.