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/RunCollectionTabularView.cs

    r3347 r3350  
    4040      Caption = "Run Collection";
    4141      this.dataGridView.RowHeaderMouseDoubleClick += new DataGridViewCellMouseEventHandler(dataGridView_RowHeaderMouseDoubleClick);
     42      base.ReadOnly = true;
    4243    }
    4344
     
    4546      : this() {
    4647      Content = content;
     48    }
     49
     50    public override bool ReadOnly {
     51      get { return base.ReadOnly; }
     52      set { /*not needed because results are always readonly */}
    4753    }
    4854
Note: See TracChangeset for help on using the changeset viewer.