Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/19/10 19:43:05 (14 years ago)
Author:
mkommend
Message:

Adjusted the SetEnabledStateOfControls method in all views, added the Enabled property into the IView interface and adapted the ViewHost, View and ContentView class (ticket #1155).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionConstraintView.cs

    r4152 r4435  
    8383    protected override void SetEnabledStateOfControls() {
    8484      base.SetEnabledStateOfControls();
    85       cmbConstraintColumn.Enabled = !this.ReadOnly && !this.Locked && Content != null;
    86       cmbConstraintOperation.Enabled = !this.ReadOnly && !this.Locked && Content != null;
     85      cmbConstraintColumn.Enabled = !this.ReadOnly && Content != null;
     86      cmbConstraintOperation.Enabled = !this.ReadOnly && Content != null;
    8787      chbActive.Enabled = !this.Locked && Content != null;
    8888    }
Note: See TracChangeset for help on using the changeset viewer.