Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/11/11 17:54:42 (13 years ago)
Author:
mkommend
Message:

#1618: Enabled problem data changes in DataAnalysisSolutions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/ClassificationSolutionView.cs

    r6652 r6653  
    3535      set { base.Content = value; }
    3636    }
     37
     38    #region drag and drop
     39    protected override void itemsListView_DragEnter(object sender, DragEventArgs e) {
     40      validDragOperation = false;
     41      if (!ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is ClassificationProblemData)) {
     42        validDragOperation = true;
     43      }
     44    }
     45    #endregion
    3746  }
    3847}
Note: See TracChangeset for help on using the changeset viewer.