Changeset 15123
- Timestamp:
- 07/05/17 19:16:33 (7 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/HeuristicLab.Algorithms.DataAnalysis.Views-3.4.csproj
r15105 r15123 149 149 <DependentUpon>RandomForestClassificationSolutionView.cs</DependentUpon> 150 150 </Compile> 151 <Compile Include="RandomForestModelView.cs"> 152 <SubType>UserControl</SubType> 153 </Compile> 154 <Compile Include="RandomForestModelView.Designer.cs"> 155 <DependentUpon>RandomForestModelView.cs</DependentUpon> 156 </Compile> 157 <Compile Include="RandomForestRegressionSolutionView.cs"> 158 <SubType>UserControl</SubType> 159 </Compile> 160 <Compile Include="RandomForestRegressionSolutionView.Designer.cs"> 161 <DependentUpon>RandomForestRegressionSolutionView.cs</DependentUpon> 151 <Compile Include="RandomForestModelEvaluationView.cs"> 152 <SubType>UserControl</SubType> 153 </Compile> 154 <Compile Include="RandomForestModelEvaluationView.Designer.cs"> 155 <DependentUpon>RandomForestModelEvaluationView.cs</DependentUpon> 162 156 </Compile> 163 157 <Compile Include="MeanProdView.cs"> -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/RandomForestModelEvaluationView.Designer.cs
r15122 r15123 21 21 22 22 namespace HeuristicLab.Algorithms.DataAnalysis.Views { 23 partial class RandomForestModel View {23 partial class RandomForestModelEvaluationView { 24 24 /// <summary> 25 25 /// Required designer variable. … … 81 81 this.listBox.DoubleClick += new System.EventHandler(this.listBox_DoubleClick); 82 82 // 83 // RandomForestModel View83 // RandomForestModelEvaluationView 84 84 // 85 85 this.AllowDrop = true; -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/RandomForestModelEvaluationView.cs
r15122 r15123 30 30 31 31 namespace HeuristicLab.Algorithms.DataAnalysis.Views { 32 [View("R andom forest model")]32 [View("RF Model Evaluation")] 33 33 [Content(typeof(IRandomForestRegressionSolution), false)] 34 34 [Content(typeof(IRandomForestClassificationSolution), false)] 35 public partial class RandomForestModelView : DataAnalysisSolutionEvaluationView { 36 public override Image ViewImage { 37 get { return HeuristicLab.Common.Resources.VSImageLibrary.Function; } 38 } 35 public partial class RandomForestModelEvaluationView : DataAnalysisSolutionEvaluationView { 39 36 40 37 protected override void SetEnabledStateOfControls() { … … 44 41 } 45 42 46 public RandomForestModel View()43 public RandomForestModelEvaluationView() 47 44 : base() { 48 45 InitializeComponent();
Note: See TracChangeset
for help on using the changeset viewer.