- Timestamp:
- 07/23/10 18:20:42 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization.Views/3.3
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj
r4065 r4094 125 125 <DependentUpon>BatchRunView.cs</DependentUpon> 126 126 </Compile> 127 <Compile Include="RunCollectionBoxPlotView.cs"> 128 <SubType>UserControl</SubType> 129 </Compile> 130 <Compile Include="RunCollectionBoxPlotView.Designer.cs"> 131 <DependentUpon>RunCollectionBoxPlotView.cs</DependentUpon> 132 </Compile> 127 133 <Compile Include="RunCollectionComparisonConstraintView.cs"> 128 134 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.Designer.cs
r4049 r4094 38 38 } 39 39 40 40 #region Component Designer generated code 41 41 42 42 /// <summary> … … 196 196 this.chart.TabIndex = 16; 197 197 this.chart.Text = "chart"; 198 this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(this.chart_AxisViewChanged); 199 this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown); 200 this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove); 198 201 this.chart.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chart_MouseUp); 199 this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);200 this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);201 this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(chart_AxisViewChanged);202 202 // 203 203 // zoomButton … … 253 253 // colorDialog 254 254 // 255 this.colorDialog.AllowFullOpen = false; 255 256 this.colorDialog.FullOpen = true; 256 257 // … … 294 295 this.ResumeLayout(false); 295 296 this.PerformLayout(); 297 296 298 } 297 299 #endregion -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs
r4068 r4094 74 74 set { base.Content = value; } 75 75 } 76 77 76 public IStringConvertibleMatrix Matrix { 78 77 get { return this.Content; } … … 88 87 RegisterRunEvents(Content); 89 88 } 90 protected virtual void RegisterRunEvents(IEnumerable<IRun> runs) {91 foreach (IRun run in runs)92 run.Changed += new EventHandler(run_Changed);93 }94 89 protected override void DeregisterContentEvents() { 95 90 base.DeregisterContentEvents(); … … 100 95 Content.CollectionReset -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset); 101 96 DeregisterRunEvents(Content); 97 } 98 protected virtual void RegisterRunEvents(IEnumerable<IRun> runs) { 99 foreach (IRun run in runs) 100 run.Changed += new EventHandler(run_Changed); 102 101 } 103 102 protected virtual void DeregisterRunEvents(IEnumerable<IRun> runs) {
Note: See TracChangeset
for help on using the changeset viewer.