Changeset 3714
- Timestamp:
- 05/08/10 03:58:24 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs ¶
r3643 r3714 177 177 #region TextBox Events 178 178 private void rowsTextBox_Validating(object sender, CancelEventArgs e) { 179 if (ReadOnly || Locked) 180 return; 179 181 int i = 0; 180 182 if (!int.TryParse(rowsTextBox.Text, out i) || (i <= 0)) { … … 197 199 } 198 200 private void columnsTextBox_Validating(object sender, CancelEventArgs e) { 201 if (ReadOnly || Locked) 202 return; 199 203 int i = 0; 200 204 if (!int.TryParse(columnsTextBox.Text, out i) || (i <= 0)) {
Note: See TracChangeset
for help on using the changeset viewer.