Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/20/11 13:54:57 (12 years ago)
Author:
spimming
Message:

#1680:

  • merged changes from trunk into branch

' removed pre-build event for multiple app.configs

Location:
branches/HeuristicLab.Hive.Azure
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive.Azure

  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.QuadraticAssignment.Views

  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/HeuristicLab.Problems.QuadraticAssignment.Views-3.3.csproj

    r6952 r7215  
    102102  </PropertyGroup>
    103103  <ItemGroup>
    104     <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=x86" />
    105     <Reference Include="HeuristicLab.Data.Views-3.3">
    106       <HintPath>..\..\HeuristicLab.Data.Views\3.3\bin\Debug\HeuristicLab.Data.Views-3.3.dll</HintPath>
    107     </Reference>
    108     <Reference Include="HeuristicLab.Visualization.ChartControlsExtensions-3.3">
    109       <HintPath>..\..\HeuristicLab.Visualization.ChartControlsExtensions\3.3\bin\Debug\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath>
    110     </Reference>
    111104    <Reference Include="System" />
    112105    <Reference Include="System.Core" />
     
    151144      <Private>False</Private>
    152145    </ProjectReference>
     146    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
     147      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
     148      <Name>HeuristicLab.Collections-3.3</Name>
     149      <Private>False</Private>
     150    </ProjectReference>
    153151    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
    154152      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
     
    171169      <Private>False</Private>
    172170    </ProjectReference>
     171    <ProjectReference Include="..\..\HeuristicLab.Data.Views\3.3\HeuristicLab.Data.Views-3.3.csproj">
     172      <Project>{72104A0B-90E7-42F3-9ABE-9BBBADD4B943}</Project>
     173      <Name>HeuristicLab.Data.Views-3.3</Name>
     174      <Private>False</Private>
     175    </ProjectReference>
    173176    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
    174177      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
     
    209212      <Project>{79271BC8-4446-40E2-BB89-9BE4E17174FE}</Project>
    210213      <Name>HeuristicLab.Problems.QuadraticAssignment-3.3</Name>
     214      <Private>False</Private>
     215    </ProjectReference>
     216    <ProjectReference Include="..\..\HeuristicLab.Visualization.ChartControlsExtensions\3.3\HeuristicLab.Visualization.ChartControlsExtensions-3.3.csproj">
     217      <Project>{315BDA09-3F4F-49B3-9790-B37CFC1C5750}</Project>
     218      <Name>HeuristicLab.Visualization.ChartControlsExtensions-3.3</Name>
    211219      <Private>False</Private>
    212220    </ProjectReference>
  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QAPVisualizationControl.cs

    r5933 r7215  
    2222using System;
    2323using System.Drawing;
    24 using System.Drawing.Drawing2D;
    25 using System.Drawing.Text;
    2624using System.Globalization;
    2725using System.Text;
     
    173171      if (bitmap == null) return;
    174172      using (Graphics g = Graphics.FromImage(bitmap)) {
    175         g.TextRenderingHint = TextRenderingHint.AntiAlias;
    176         g.SmoothingMode = SmoothingMode.AntiAlias;
     173        g.Clear(Color.White);
    177174
    178175        Font font = new Font(FontFamily.GenericSansSerif, 12, FontStyle.Regular);
     
    304301        Random rand = new Random();
    305302        using (Graphics graphics = Graphics.FromImage(newBitmap)) {
    306           graphics.SmoothingMode = SmoothingMode.AntiAlias;
    307           graphics.TextRenderingHint = TextRenderingHint.AntiAlias;
     303          graphics.Clear(Color.White);
    308304          graphics.DrawString("Showing locations spaced out according to their distances", Font, Brushes.Black, 5, 2);
    309305
     
    394390        Random rand = new Random();
    395391        using (Graphics graphics = Graphics.FromImage(newBitmap)) {
    396           graphics.SmoothingMode = SmoothingMode.AntiAlias;
    397           graphics.TextRenderingHint = TextRenderingHint.AntiAlias;
     392          graphics.Clear(Color.White);
    398393          graphics.DrawString("Showing facilities spaced out according to their weights", Font, Brushes.Black, 5, 2);
    399394
     
    490485        Random rand = new Random();
    491486        using (Graphics graphics = Graphics.FromImage(newBitmap)) {
    492           graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
    493           graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
    494 
     487          graphics.Clear(Color.White);
    495488          for (int i = 0; i < assignment.Length - 1; i++) {
    496489            for (int j = i + 1; j < assignment.Length; j++) {
Note: See TracChangeset for help on using the changeset viewer.