Changeset 8558
- Timestamp:
- 09/03/12 16:04:29 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/RunCollectionStatisticalTabularView.cs
r8522 r8558 37 37 public RunCollectionStatisticalTabularView() { 38 38 InitializeComponent(); 39 stringConvertibleMatrixView.DataGridView.RowHeaderMouseDoubleClick += new DataGridViewCellMouseEventHandler(DataGridView_RowHeaderMouseDoubleClick); 40 } 41 42 void DataGridView_RowHeaderMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) { 43 if (e.RowIndex >= 0) { 44 IRun run = Content.ElementAt(e.RowIndex); 45 IContentView view = MainFormManager.MainForm.ShowContent(run); 46 if (view != null) { 47 view.ReadOnly = this.ReadOnly; 48 view.Locked = this.Locked; 49 } 50 } 39 51 } 40 52
Note: See TracChangeset
for help on using the changeset viewer.