Changeset 3766 for trunk/sources/HeuristicLab.Optimization.Views/3.3
- Timestamp:
- 05/11/10 13:43:40 (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/RunView.Designer.cs
r3764 r3766 176 176 this.viewHost.Location = new System.Drawing.Point(6, 19); 177 177 this.viewHost.Name = "viewHost"; 178 this.viewHost.ReadOnly = false;178 this.viewHost.ReadOnly = true; 179 179 this.viewHost.Size = new System.Drawing.Size(290, 195); 180 180 this.viewHost.TabIndex = 0; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.cs
r3764 r3766 45 45 } 46 46 47 public override bool ReadOnly {48 get { return base.ReadOnly; }49 set { /*not needed because results are always readonly */}50 }51 52 47 /// <summary> 53 48 /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable". … … 55 50 public RunView() { 56 51 InitializeComponent(); 57 base.ReadOnly = true;58 52 } 59 53 … … 154 148 IContentView view = MainFormManager.MainForm.ShowContent(item); 155 149 if (view != null) { 156 view.ReadOnly = ReadOnly;150 view.ReadOnly = true; 157 151 view.Locked = Locked; 158 152 }
Note: See TracChangeset
for help on using the changeset viewer.