Changeset 6558
- Timestamp:
- 07/09/11 12:49:20 (13 years ago)
- 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 431 431 <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Actions_Checkout.png" /> 432 432 <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Actions_Clone.png" /> 433 <None Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Actions_DisplayInColor_Vertical.png" /> 433 434 <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Objects_BatchRun_Paused.png" /> 434 435 <Content Include="Resources\VS2008ImageLibrary\VS2008ImageLibrary_Objects_BatchRun_Prepared.png" /> -
trunk/sources/HeuristicLab.Common.Resources/3.3/VSImageLibrary.Designer.cs
r6534 r6558 271 271 } 272 272 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 273 280 public static System.Drawing.Bitmap Document { 274 281 get { -
trunk/sources/HeuristicLab.Common.Resources/3.3/VSImageLibrary.resx
r6534 r6558 506 506 <value>Resources\VS2008ImageLibrary\VS2008ImageLibrary_CommonElements_Objects_Zoom_Out.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> 507 507 </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> 508 511 </root> -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.Designer.cs
r6026 r6558 274 274 this.colorXAxisButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 275 275 this.colorXAxisButton.Enabled = false; 276 this.colorXAxisButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.DisplayInColor ;276 this.colorXAxisButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.DisplayInColorVertical; 277 277 this.colorXAxisButton.Location = new System.Drawing.Point(719, 469); 278 278 this.colorXAxisButton.Name = "colorXAxisButton"; -
trunk/sources/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.cs
r5445 r6558 59 59 } 60 60 private void okButton_Click(object sender, EventArgs e) { 61 experiment = new Experiment( Optimizer.Name);61 experiment = new Experiment(); 62 62 if (createBatchRunCheckBox.Checked) { 63 BatchRun batchRun = new BatchRun( Optimizer.Name);63 BatchRun batchRun = new BatchRun(); 64 64 batchRun.Repetitions = (int)repetitionsNumericUpDown.Value; 65 65 batchRun.Optimizer = (IOptimizer)Optimizer.Clone();
Note: See TracChangeset
for help on using the changeset viewer.