Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6558


Ignore:
Timestamp:
07/09/11 12:49:20 (13 years ago)
Author:
swagner
Message:

Adapted colorize button for x-axis in RunCollectionBubbleChartView and changed names of experiments and batch runs which are created using the CreateExperimentDialog (#1529)

Location:
trunk/sources
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Common.Resources/3.3/HeuristicLab.Common.Resources-3.3.csproj

    r6534 r6558  
    431431    <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Actions_Checkout.png" />
    432432    <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Actions_Clone.png" />
     433    <None Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Actions_DisplayInColor_Vertical.png" />
    433434    <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Objects_BatchRun_Paused.png" />
    434435    <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Objects_BatchRun_Prepared.png" />
  • trunk/sources/HeuristicLab.Common.Resources/3.3/VSImageLibrary.Designer.cs

    r6534 r6558  
    271271        }
    272272       
     273        public static System.Drawing.Bitmap DisplayInColorVertical {
     274            get {
     275                object obj = ResourceManager.GetObject("DisplayInColorVertical", resourceCulture);
     276                return ((System.Drawing.Bitmap)(obj));
     277            }
     278        }
     279       
    273280        public static System.Drawing.Bitmap Document {
    274281            get {
  • trunk/sources/HeuristicLab.Common.Resources/3.3/VSImageLibrary.resx

    r6534 r6558  
    506506    <value>Resources\VS2008ImageLibrary\VS2008ImageLibrary_CommonElements_Objects_Zoom_Out.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
    507507  </data>
     508  <data name="DisplayInColorVertical" type="System.Resources.ResXFileRef, System.Windows.Forms">
     509    <value>Resources\VS2008ImageLibrary\VS2008ImageLibrary_Actions_DisplayInColor_Vertical.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
     510  </data>
    508511</root>
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.Designer.cs

    r6026 r6558  
    274274      this.colorXAxisButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    275275      this.colorXAxisButton.Enabled = false;
    276       this.colorXAxisButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.DisplayInColor;
     276      this.colorXAxisButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.DisplayInColorVertical;
    277277      this.colorXAxisButton.Location = new System.Drawing.Point(719, 469);
    278278      this.colorXAxisButton.Name = "colorXAxisButton";
  • trunk/sources/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.cs

    r5445 r6558  
    5959    }
    6060    private void okButton_Click(object sender, EventArgs e) {
    61       experiment = new Experiment(Optimizer.Name);
     61      experiment = new Experiment();
    6262      if (createBatchRunCheckBox.Checked) {
    63         BatchRun batchRun = new BatchRun(Optimizer.Name);
     63        BatchRun batchRun = new BatchRun();
    6464        batchRun.Repetitions = (int)repetitionsNumericUpDown.Value;
    6565        batchRun.Optimizer = (IOptimizer)Optimizer.Clone();
Note: See TracChangeset for help on using the changeset viewer.