Changeset 7816 for branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard
- Timestamp:
- 05/14/12 17:58:58 (13 years ago)
- Location:
- branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard.csproj
r7808 r7816 108 108 <Compile Include="DataAnalysisExperimentWizard.cs" /> 109 109 <Compile Include="ExperimentWizardMenuItem.cs" /> 110 <Compile Include="Plugin.cs" /> 110 111 <Compile Include="ProblemDataPage.cs"> 111 112 <SubType>UserControl</SubType> … … 121 122 </ItemGroup> 122 123 <ItemGroup> 124 <EmbeddedResource Include="ProblemDataPage.resx"> 125 <DependentUpon>ProblemDataPage.cs</DependentUpon> 126 </EmbeddedResource> 127 </ItemGroup> 128 <ItemGroup> 123 129 <ProjectReference Include="..\..\HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard\3.3\HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.csproj"> 124 130 <Project>{77169FE1-C48A-49AE-A0DD-67921D7835AB}</Project> 125 131 <Name>HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard</Name> 126 132 </ProjectReference> 127 </ItemGroup>128 <ItemGroup>129 <EmbeddedResource Include="ProblemDataPage.resx">130 <DependentUpon>ProblemDataPage.cs</DependentUpon>131 </EmbeddedResource>132 133 </ItemGroup> 133 134 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataPage.Designer.cs
r7808 r7816 24 24 /// </summary> 25 25 private void InitializeComponent() { 26 this.wizardBanner1 = new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.Controls.WizardBanner();27 26 this.dataAnalysisProblemView = new HeuristicLab.Problems.DataAnalysis.Views.DataAnalysisProblemView(); 28 27 this.SuspendLayout(); 29 28 // 30 // wizardBanner 129 // wizardBanner 31 30 // 32 this.wizardBanner1.BackColor = System.Drawing.SystemColors.Window; 33 this.wizardBanner1.Dock = System.Windows.Forms.DockStyle.Top; 34 this.wizardBanner1.Location = new System.Drawing.Point(0, 0); 35 this.wizardBanner1.Name = "wizardBanner1"; 36 this.wizardBanner1.Size = new System.Drawing.Size(713, 81); 37 this.wizardBanner1.Subtitle = "Please select file ..."; 38 this.wizardBanner1.TabIndex = 0; 39 this.wizardBanner1.Title = "Problem Data"; 31 this.wizardBanner.Size = new System.Drawing.Size(640, 81); 40 32 // 41 33 // dataAnalysisProblemView … … 47 39 this.dataAnalysisProblemView.Name = "dataAnalysisProblemView"; 48 40 this.dataAnalysisProblemView.ReadOnly = false; 49 this.dataAnalysisProblemView.Size = new System.Drawing.Size( 713, 371);41 this.dataAnalysisProblemView.Size = new System.Drawing.Size(640, 399); 50 42 this.dataAnalysisProblemView.TabIndex = 1; 51 43 // … … 53 45 // 54 46 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 47 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 55 48 this.Controls.Add(this.dataAnalysisProblemView); 56 this.Controls.Add(this.wizardBanner1);57 49 this.Name = "ProblemDataPage"; 58 this.Size = new System.Drawing.Size( 713, 452);50 this.Size = new System.Drawing.Size(640, 480); 59 51 this.SetActive += new System.ComponentModel.CancelEventHandler(this.ProblemDataPage_SetActive); 52 this.Controls.SetChildIndex(this.wizardBanner, 0); 53 this.Controls.SetChildIndex(this.dataAnalysisProblemView, 0); 60 54 this.ResumeLayout(false); 61 55 … … 64 58 #endregion 65 59 66 private Wizard.Controls.WizardBanner wizardBanner1;67 60 private Problems.DataAnalysis.Views.DataAnalysisProblemView dataAnalysisProblemView; 68 61 -
branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataPage.cs
r7808 r7816 1 1 using System.ComponentModel; 2 using HeuristicLab.Problems.DataAnalysis; 2 3 3 4 namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard { … … 5 6 public ProblemDataPage() { 6 7 InitializeComponent(); 8 dataAnalysisProblemView.Content = new RegressionProblem(); 7 9 } 8 10
Note: See TracChangeset
for help on using the changeset viewer.