Changeset 10952 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingDataTableView.cs
- Timestamp:
- 06/04/14 15:32:33 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingDataTableView.cs
r10914 r10952 39 39 protected List<Series> invisibleSeries; 40 40 protected Dictionary<IObservableList<double>, DataRow> valuesRowsTable; 41 private event EventHandler chartDoubleClick; 41 42 42 43 public new PreprocessingDataTable Content { … … 759 760 } 760 761 762 public event EventHandler ChartDoubleClick { 763 add { chartDoubleClick += value; } 764 remove { chartDoubleClick -= value; } 765 } 766 761 767 #region Helpers 762 768 public static IEnumerable<double> DoubleRange(double min, double max, double step) { … … 816 822 } 817 823 #endregion 824 825 //bubble double click event with data table view as sender 826 private void chart_DoubleClick(object sender, EventArgs e) { 827 if (chartDoubleClick != null) 828 chartDoubleClick(this, e); 829 } 818 830 } 819 831 }
Note: See TracChangeset
for help on using the changeset viewer.