Changeset 18047 for branches/3026_IntegrationIntoSymSpace
- Timestamp:
- 09/03/21 16:16:53 (3 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/HeuristicLab.JsonInterface.OptimizerIntegration.csproj
r18042 r18047 155 155 <Compile Include="Plugin.cs" /> 156 156 <Compile Include="Properties\AssemblyInfo.cs" /> 157 <Compile Include="Views\ResultCollectionPostProcessorControl.cs"> 158 <SubType>UserControl</SubType> 159 </Compile> 160 <Compile Include="Views\ResultCollectionPostProcessorControl.Designer.cs"> 161 <DependentUpon>ResultCollectionPostProcessorControl.cs</DependentUpon> 162 </Compile> 157 163 <Compile Include="Views\ResultJsonItemControl.cs"> 158 164 <SubType>UserControl</SubType> -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/ExportJsonDialog.Designer.cs
r18046 r18047 176 176 this.splitContainer2.TabIndex = 9; 177 177 // postProcessorListView 178 this.postProcessorList View = new Core.Views.CheckedItemListView<IResultCollectionPostProcessor>();179 this.postProcessorList View.Content = new CheckedItemList<IResultCollectionPostProcessor>();180 this.postProcessorList View.Content.Add(new SymRegPythonPostProcessor());181 this.postProcessorList View.Location = new System.Drawing.Point(0, 6);182 this.postProcessorList View.Dock = System.Windows.Forms.DockStyle.Fill;178 this.postProcessorListControl = new ResultCollectionPostProcessorControl(); 179 this.postProcessorListControl.Content = new CheckedItemList<IResultCollectionPostProcessor>(); 180 this.postProcessorListControl.Content.Add(new SymRegPythonPostProcessor()); 181 this.postProcessorListControl.Location = new System.Drawing.Point(0, 6); 182 this.postProcessorListControl.Dock = System.Windows.Forms.DockStyle.Fill; 183 183 // 184 184 // tabControl1 … … 220 220 // tabPage3 221 221 // 222 this.tabPage3.Controls.Add(this.postProcessorList View);222 this.tabPage3.Controls.Add(this.postProcessorListControl); 223 223 this.tabPage3.Location = new System.Drawing.Point(4, 22); 224 224 this.tabPage3.Name = "tabPage3"; … … 310 310 private System.Windows.Forms.Panel panelResultDetails; 311 311 private System.Windows.Forms.TabPage tabPage3; 312 private Core.Views.CheckedItemListView<IResultCollectionPostProcessor> postProcessorListView;312 private ResultCollectionPostProcessorControl postProcessorListControl; 313 313 } 314 314 } -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/ExportJsonDialog.cs
r18046 r18047 61 61 public ExportJsonDialog() { 62 62 InitializeComponent(); 63 this.PostProcessors = this.postProcessorList View.Content;63 this.PostProcessors = this.postProcessorListControl.Content; 64 64 this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon; 65 65 InitCache(); -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/ResultCollectionPostProcessors/SymRegPythonPostProcessor.cs
r18046 r18047 32 32 } 33 33 34 35 34 public override IDeepCloneable Clone(Cloner cloner) { 36 35 return new SymRegPythonPostProcessor(this, cloner);
Note: See TracChangeset
for help on using the changeset viewer.