Changeset 865 for trunk/sources
- Timestamp:
- 11/29/08 12:30:22 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Visualization.Test
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization.Test/HeuristicLab.Visualization.Test.csproj
r861 r865 52 52 </PropertyGroup> 53 53 <ItemGroup> 54 <Reference Include="nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">55 <SpecificVersion>False</SpecificVersion>56 <HintPath>NUnit-2.4.8-bin\nunit.framework.dll</HintPath>57 </Reference>58 54 <Reference Include="System" /> 59 55 <Reference Include="System.Core"> … … 74 70 <Compile Include="HeuristicLabVisualizationTestApplication.cs" /> 75 71 <Compile Include="HeuristicLabVisualizationTestPlugin.cs" /> 76 <Compile Include="L ineChartTestForm.cs">72 <Compile Include="LegendForm.cs"> 77 73 <SubType>Form</SubType> 78 74 </Compile> 79 <Compile Include="L ineChartTestForm.Designer.cs">80 <DependentUpon>L ineChartTestForm.cs</DependentUpon>75 <Compile Include="LegendForm.Designer.cs"> 76 <DependentUpon>LegendForm.cs</DependentUpon> 81 77 </Compile> 82 <Compile Include="LineChartTests.cs" />83 78 <Compile Include="MainForm.cs"> 84 79 <SubType>Form</SubType> … … 94 89 </ItemGroup> 95 90 <ItemGroup> 96 <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">97 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>98 <Name>HeuristicLab.Core</Name>99 </ProjectReference>100 91 <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 101 92 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> … … 108 99 </ItemGroup> 109 100 <ItemGroup> 110 <EmbeddedResource Include="LineChartTestForm.resx">111 <DependentUpon>LineChartTestForm.cs</DependentUpon>112 </EmbeddedResource>113 101 <EmbeddedResource Include="MainForm.resx"> 114 102 <DependentUpon>MainForm.cs</DependentUpon> -
trunk/sources/HeuristicLab.Visualization.Test/MainForm.Designer.cs
r725 r865 26 26 this.canvasUI = new HeuristicLab.Visualization.CanvasUI(); 27 27 this.label2 = new System.Windows.Forms.Label(); 28 this.legendButton = new System.Windows.Forms.Button(); 28 29 this.SuspendLayout(); 29 30 // … … 33 34 this.canvasUI.MouseEventListener = null; 34 35 this.canvasUI.Name = "canvasUI"; 35 this.canvasUI.Size = new System.Drawing.Size(800, 600);36 this.canvasUI.Size = new System.Drawing.Size(800, 571); 36 37 this.canvasUI.TabIndex = 3; 37 38 this.canvasUI.Text = "canvasUI"; … … 47 48 this.label2.Text = "Canvas"; 48 49 // 50 // legendButton 51 // 52 this.legendButton.Location = new System.Drawing.Point(12, 606); 53 this.legendButton.Name = "legendButton"; 54 this.legendButton.Size = new System.Drawing.Size(75, 23); 55 this.legendButton.TabIndex = 5; 56 this.legendButton.Text = "Legend"; 57 this.legendButton.UseVisualStyleBackColor = true; 58 this.legendButton.Click += new System.EventHandler(this.legendButton_Click); 59 // 49 60 // MainForm 50 61 // … … 52 63 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 53 64 this.ClientSize = new System.Drawing.Size(822, 637); 65 this.Controls.Add(this.legendButton); 54 66 this.Controls.Add(this.label2); 55 67 this.Controls.Add(this.canvasUI); … … 65 77 private HeuristicLab.Visualization.CanvasUI canvasUI; 66 78 private System.Windows.Forms.Label label2; 79 private System.Windows.Forms.Button legendButton; 67 80 } 68 81 } -
trunk/sources/HeuristicLab.Visualization.Test/MainForm.cs
r725 r865 115 115 lastActualPoint = actualPoint; 116 116 } 117 118 private void legendButton_Click(object sender, System.EventArgs e) { 119 LegendForm form = new LegendForm(); 120 form.Show(); 121 } 117 122 } 118 123 }
Note: See TracChangeset
for help on using the changeset viewer.