Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/15/10 01:34:27 (14 years ago)
Author:
mkommend
Message:

implemented first version of View.ReadOnly and adapted some views to the new mechanism (ticket #973)

File:
1 edited

Legend:

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

    r3349 r3350  
    4343      Caption = "Run Collection Bubble Chart";
    4444      this.categoricalMapping = new Dictionary<int, Dictionary<object, double>>();
     45      base.ReadOnly = true;
    4546    }
    4647
     
    5354      get { return (RunCollection)base.Content; }
    5455      set { base.Content = value; }
     56    }
     57    public override bool ReadOnly {
     58      get { return base.ReadOnly; }
     59      set { /*not needed because results are always readonly */}
    5560    }
    5661
Note: See TracChangeset for help on using the changeset viewer.