Changeset 14108 for branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Views
- Timestamp:
- 07/19/16 13:46:15 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Views/MOFrontScatterPlotView.cs
r14092 r14108 20 20 #endregion 21 21 using System; 22 using System.Data;23 22 using System.Drawing; 24 23 using System.Linq; … … 47 46 48 47 public MOQualitiesScatterPlotView() 49 48 : base() { 50 49 InitializeComponent(); 51 50 … … 57 56 this.chart.TextAntiAliasingQuality = TextAntiAliasingQuality.High; 58 57 this.chart.AxisViewChanged += new EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(chart_AxisViewChanged); 58 this.chart.GetToolTipText += new System.EventHandler<ToolTipEventArgs>(this.Chart_GetToolTipText); 59 59 60 60 //configure axis … … 72 72 } 73 73 74 protected override void RegisterContentEvents() {75 base.RegisterContentEvents();76 this.chart.GetToolTipText += new System.EventHandler<ToolTipEventArgs>(this.Chart_GetToolTipText);77 }78 79 protected override void DeregisterContentEvents() {80 base.DeregisterContentEvents();81 this.chart.GetToolTipText -= new System.EventHandler<ToolTipEventArgs>(this.Chart_GetToolTipText);82 }83 74 84 75 private void Chart_GetToolTipText(object sender, ToolTipEventArgs e) {
Note: See TracChangeset
for help on using the changeset viewer.