- Timestamp:
- 09/22/11 12:47:58 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.cs
r5837 r6818 44 44 } 45 45 46 public override bool ReadOnly { 47 get { return true; } 48 set { /*not needed because runs are always readonly */} 49 } 50 46 51 /// <summary> 47 52 /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable". … … 79 84 detailsGroupBox.Enabled = (Content != null) && (listView.SelectedItems.Count == 1); 80 85 viewHost.Enabled = Content != null; 86 viewHost.ReadOnly = ReadOnly; 81 87 changeColorButton.Enabled = Content != null; 82 88 showAlgorithmButton.Enabled = Content != null && Content.Algorithm != null && !Locked;
Note: See TracChangeset
for help on using the changeset viewer.