Changeset 10717 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.cs
- Timestamp:
- 04/02/14 16:01:01 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.cs
r10712 r10717 20 20 #endregion 21 21 22 using System; 22 23 using System.Windows.Forms; 23 24 using HeuristicLab.Analysis; … … 42 43 set { base.Content = value; } 43 44 } 45 46 private void checkBox1_CheckedChanged(object sender, EventArgs e) { 47 if (allInOneMode == false) 48 allInOneMode = true; 49 else 50 allInOneMode = false; 51 GenerateChart(); 52 } 44 53 } 45 54 }
Note: See TracChangeset
for help on using the changeset viewer.