Changeset 13846 for branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/RegressionSolutionGradientView.cs
- Timestamp:
- 05/12/16 15:11:30 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/RegressionSolutionGradientView.cs
r13842 r13846 26 26 using HeuristicLab.Collections; 27 27 using HeuristicLab.MainForm; 28 using HeuristicLab.MainForm.WindowsForms; 28 29 using HeuristicLab.Problems.DataAnalysis; 29 30 using HeuristicLab.Problems.DataAnalysis.Views; … … 76 77 trackbars.Clear(); 77 78 79 tableLayoutPanel.SuspendRepaint(); 80 tableLayoutPanel.SuspendLayout(); 81 78 82 tableLayoutPanel.RowCount = 0; 79 83 tableLayoutPanel.Controls.Clear(); 80 84 81 if (Content == null) return; 85 if (Content == null) { 86 tableLayoutPanel.ResumeLayout(false); 87 tableLayoutPanel.ResumeRepaint(false); 88 return; 89 } 82 90 83 91 variableNames.AddRange(Content.ProblemData.AllowedInputVariables); … … 99 107 } 100 108 109 tableLayoutPanel.ResumeLayout(true); 110 tableLayoutPanel.ResumeRepaint(true); 111 101 112 trackbars.First().Checked = true; 102 113 }
Note: See TracChangeset
for help on using the changeset viewer.