Changeset 4152
- Timestamp:
- 08/04/10 16:55:05 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionConstraintView.cs
r4068 r4152 118 118 } 119 119 protected virtual void chbActive_CheckedChanged(object sender, EventArgs e) { 120 Content.Active = chbActive.Checked; 120 if (Content != null) 121 Content.Active = chbActive.Checked; 121 122 } 122 123 } -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionEqualityConstraintView.cs
r4068 r4152 49 49 50 50 private void txtConstraintData_TextChanged(object sender, EventArgs e) { 51 Content.ConstraintData = txtConstraintData.Text; 51 if (Content != null) 52 Content.ConstraintData = txtConstraintData.Text; 52 53 } 53 54 }
Note: See TracChangeset
for help on using the changeset viewer.