Changeset 13996 for branches/HeuristicLab.RegressionSolutionGradientView
- Timestamp:
- 07/05/16 11:52:02 (8 years ago)
- Location:
- branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/GradientChart.Designer.cs
r13995 r13996 42 42 // 43 43 this.calculationPendingLabel.BackColor = System.Drawing.Color.White; 44 this.calculationPendingLabel.Image = ((System.Drawing.Image)(resources.GetObject("calculationPendingLabel.Image")));44 this.calculationPendingLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Timer; 45 45 this.calculationPendingLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 46 46 this.calculationPendingLabel.Location = new System.Drawing.Point(3, 3); … … 97 97 this.configurationButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 98 98 this.configurationButton.AutoSize = true; 99 this.configurationButton.Image = ((System.Drawing.Image)(resources.GetObject("configurationButton.Image")));99 this.configurationButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties; 100 100 this.configurationButton.Location = new System.Drawing.Point(426, 3); 101 101 this.configurationButton.Name = "configurationButton"; -
branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj
r13948 r13996 528 528 <DependentUpon>AbstractFeatureCorrelationView.cs</DependentUpon> 529 529 </EmbeddedResource> 530 <EmbeddedResource Include="GradientChartConfigurationDialog.resx"> 531 <DependentUpon>GradientChartConfigurationDialog.cs</DependentUpon> 532 </EmbeddedResource> 533 <EmbeddedResource Include="Regression\RegressionSolutionTargetResponseGradientView.resx"> 534 <DependentUpon>RegressionSolutionTargetResponseGradientView.cs</DependentUpon> 535 </EmbeddedResource> 530 536 </ItemGroup> 531 537 <ItemGroup> -
branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionTargetResponseGradientView.cs
r13995 r13996 364 364 365 365 private void solution_ModelChanged(object sender, EventArgs e) { 366 OnContentChanged(); 366 foreach (var chart in gradientCharts.Values) { 367 chart.RecalculateAsync(); 368 } 367 369 } 368 370 } 369 371 } 370 371
Note: See TracChangeset
for help on using the changeset viewer.