Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/01/11 17:15:41 (13 years ago)
Author:
cneumuel
Message:

#1215

  • worked on configurability of SymbolicExpressionGrammar
Location:
branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/MetaOptimizationProblemView.Designer.cs

    r5313 r5927  
    3131      //
    3232      this.parameterCollectionView.AllowDrop = true;
    33       this.parameterCollectionView.Size = new System.Drawing.Size(604, 353);
     33      this.parameterCollectionView.Size = new System.Drawing.Size(604, 373);
    3434      this.parameterCollectionView.DragDrop += new System.Windows.Forms.DragEventHandler(this.parameterCollectionView_DragDrop);
    3535      this.parameterCollectionView.DragEnter += new System.Windows.Forms.DragEventHandler(this.parameterCollectionView_DragEnterOver);
     
    4040      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    4141      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    42       this.nameTextBox.Size = new System.Drawing.Size(532, 20);
    43       //
    44       // descriptionTextBox
    45       //
    46       this.descriptionTextBox.Size = new System.Drawing.Size(532, 20);
     42      this.nameTextBox.Size = new System.Drawing.Size(542, 20);
    4743      //
    4844      // createExperimentButton
     
    5046      this.createExperimentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
    5147                  | System.Windows.Forms.AnchorStyles.Right)));
    52       this.createExperimentButton.Location = new System.Drawing.Point(0, 411);
     48      this.createExperimentButton.Location = new System.Drawing.Point(0, 405);
    5349      this.createExperimentButton.Name = "createExperimentButton";
    5450      this.createExperimentButton.Size = new System.Drawing.Size(604, 24);
     
    6460      this.Controls.Add(this.createExperimentButton);
    6561      this.Name = "MetaOptimizationProblemView";
    66       this.Size = new System.Drawing.Size(604, 437);
     62      this.Size = new System.Drawing.Size(604, 431);
    6763      this.Controls.SetChildIndex(this.createExperimentButton, 0);
     64      this.Controls.SetChildIndex(this.infoLabel, 0);
    6865      this.Controls.SetChildIndex(this.nameTextBox, 0);
    6966      this.Controls.SetChildIndex(this.nameLabel, 0);
    70       this.Controls.SetChildIndex(this.descriptionLabel, 0);
    71       this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    7267      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
    7368      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/MetaOptimizationProblemView.resx

    r5313 r5927  
    121121    <value>107, 17</value>
    122122  </metadata>
    123   <metadata name="errorProvider.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    124     <value>107, 17</value>
    125   </metadata>
    126123  <metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    127124    <value>17, 17</value>
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/OptimizableView.cs

    r5665 r5927  
    6868              this.viewHost.Content = pvc.ParameterConfigurations;
    6969            }
     70
     71            //var symbolicVc = Content as SymbolicExpressionGrammarValueConfiguration;
     72            //if (symbolicVc != null) {
     73            //  this.viewHost.ViewsLabelVisible = false;
     74            //  this.viewHost.Content = symbolicVc.ParameterConfigurations;
     75            //}
    7076          } else {
    7177            throw new NotSupportedException("Only IParameterConfiguration and IValueConfiguration types are allowed.");
Note: See TracChangeset for help on using the changeset viewer.