Changeset 7808
- Timestamp:
- 05/14/12 16:01:00 (13 years ago)
- Location:
- branches/DataAnalysisService
- Files:
-
- 13 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysisService/DataAnalysisService.sln
r7803 r7808 3 3 # Visual Studio 2010 4 4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard", "HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard\3.3\HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.csproj", "{77169FE1-C48A-49AE-A0DD-67921D7835AB}" 5 EndProject 6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard", "HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard\3.3\HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard.csproj", "{2DCCE95D-3266-4256-966A-64054BEA34F1}" 5 7 EndProject 6 8 Global … … 14 16 {77169FE1-C48A-49AE-A0DD-67921D7835AB}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 17 {77169FE1-C48A-49AE-A0DD-67921D7835AB}.Release|Any CPU.Build.0 = Release|Any CPU 18 {2DCCE95D-3266-4256-966A-64054BEA34F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 {2DCCE95D-3266-4256-966A-64054BEA34F1}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 {2DCCE95D-3266-4256-966A-64054BEA34F1}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 {2DCCE95D-3266-4256-966A-64054BEA34F1}.Release|Any CPU.Build.0 = Release|Any CPU 16 22 EndGlobalSection 17 23 GlobalSection(SolutionProperties) = preSolution -
branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard/3.3/Controls/WizardBanner.Designer.cs
r7803 r7808 35 35 this.etchedLine1.Edge = HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.Controls.EtchEdge.Bottom; 36 36 this.etchedLine1.LightColor = System.Drawing.SystemColors.ControlLight; 37 this.etchedLine1.Location = new System.Drawing.Point(0, 71);37 this.etchedLine1.Location = new System.Drawing.Point(0, 61); 38 38 this.etchedLine1.Name = "etchedLine1"; 39 39 this.etchedLine1.Size = new System.Drawing.Size(541, 20); … … 70 70 this.Controls.Add(this.etchedLine1); 71 71 this.Name = "WizardBanner"; 72 this.Size = new System.Drawing.Size(541, 91);72 this.Size = new System.Drawing.Size(541, 81); 73 73 this.ResumeLayout(false); 74 74 -
branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard/3.3/HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.csproj
r7804 r7808 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 11 <RootNamespace>HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard</RootNamespace> 12 <AssemblyName>HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard </AssemblyName>12 <AssemblyName>HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard-3.3</AssemblyName> 13 13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> … … 62 62 </Compile> 63 63 <Compile Include="Properties\AssemblyInfo.cs" /> 64 <Compile Include="Wizard .cs">64 <Compile Include="WizardBase.cs"> 65 65 <SubType>Form</SubType> 66 66 </Compile> 67 <Compile Include="Wizard .Designer.cs">68 <DependentUpon>Wizard .cs</DependentUpon>67 <Compile Include="WizardBase.Designer.cs"> 68 <DependentUpon>WizardBase.cs</DependentUpon> 69 69 </Compile> 70 70 <Compile Include="WizardPage.cs"> … … 83 83 <DependentUpon>WizardBanner.cs</DependentUpon> 84 84 </EmbeddedResource> 85 <EmbeddedResource Include="Wizard .resx">86 <DependentUpon>Wizard .cs</DependentUpon>85 <EmbeddedResource Include="WizardBase.resx"> 86 <DependentUpon>WizardBase.cs</DependentUpon> 87 87 </EmbeddedResource> 88 88 </ItemGroup> 89 89 <ItemGroup> 90 90 <None Include="HeuristicLab.snk" /> 91 <None Include="Plugin.cs.frame" /> 91 92 </ItemGroup> 92 93 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard/3.3/WizardPage.cs
r7803 r7808 8 8 } 9 9 10 public Wizard ParentWizard {11 get { return (Wizard )ParentForm; }10 public WizardBase ParentWizard { 11 get { return (WizardBase)ParentForm; } 12 12 } 13 13
Note: See TracChangeset
for help on using the changeset viewer.