Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/11 13:00:48 (13 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/Views/OKBProblemView.Designer.cs

    r5653 r5660  
    4848      this.problemLabel = new System.Windows.Forms.Label();
    4949      this.refreshButton = new System.Windows.Forms.Button();
     50      this.cloneProblemButton = new System.Windows.Forms.Button();
     51      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
     52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5053      this.SuspendLayout();
     54      //
     55      // parameterCollectionView
     56      //
     57      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     58                  | System.Windows.Forms.AnchorStyles.Left)
     59                  | System.Windows.Forms.AnchorStyles.Right)));
     60      this.parameterCollectionView.Content = null;
     61      this.parameterCollectionView.Location = new System.Drawing.Point(0, 79);
     62      this.parameterCollectionView.Name = "parameterCollectionView";
     63      this.parameterCollectionView.Size = new System.Drawing.Size(706, 314);
     64      this.parameterCollectionView.TabIndex = 8;
     65      //
     66      // nameTextBox
     67      //
     68      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     69      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
     70      this.nameTextBox.Location = new System.Drawing.Point(72, 27);
     71      this.nameTextBox.Size = new System.Drawing.Size(634, 20);
     72      this.nameTextBox.TabIndex = 5;
     73      //
     74      // nameLabel
     75      //
     76      this.nameLabel.Location = new System.Drawing.Point(3, 30);
     77      this.nameLabel.TabIndex = 4;
     78      //
     79      // descriptionLabel
     80      //
     81      this.descriptionLabel.Location = new System.Drawing.Point(3, 56);
     82      this.descriptionLabel.TabIndex = 6;
     83      //
     84      // descriptionTextBox
     85      //
     86      this.descriptionTextBox.Location = new System.Drawing.Point(72, 53);
     87      this.descriptionTextBox.Size = new System.Drawing.Size(634, 20);
     88      this.descriptionTextBox.TabIndex = 7;
    5189      //
    5290      // problemComboBox
     
    5694      this.problemComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    5795      this.problemComboBox.FormattingEnabled = true;
    58       this.problemComboBox.Location = new System.Drawing.Point(57, 0);
     96      this.problemComboBox.Location = new System.Drawing.Point(72, 0);
    5997      this.problemComboBox.Name = "problemComboBox";
    60       this.problemComboBox.Size = new System.Drawing.Size(619, 21);
    61       this.problemComboBox.TabIndex = 4;
     98      this.problemComboBox.Size = new System.Drawing.Size(574, 21);
     99      this.problemComboBox.TabIndex = 1;
     100      this.problemComboBox.SelectedValueChanged += new System.EventHandler(this.problemComboBox_SelectedValueChanged);
    62101      //
    63102      // problemLabel
     
    67106      this.problemLabel.Name = "problemLabel";
    68107      this.problemLabel.Size = new System.Drawing.Size(48, 13);
    69       this.problemLabel.TabIndex = 3;
     108      this.problemLabel.TabIndex = 0;
    70109      this.problemLabel.Text = "&Problem:";
    71110      //
     
    73112      //
    74113      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     114      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    75115      this.refreshButton.Location = new System.Drawing.Point(682, -1);
    76116      this.refreshButton.Name = "refreshButton";
    77117      this.refreshButton.Size = new System.Drawing.Size(24, 24);
    78       this.refreshButton.TabIndex = 5;
     118      this.refreshButton.TabIndex = 3;
     119      this.toolTip.SetToolTip(this.refreshButton, "Refresh Problems");
    79120      this.refreshButton.UseVisualStyleBackColor = true;
    80121      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
     122      //
     123      // cloneProblemButton
     124      //
     125      this.cloneProblemButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     126      this.cloneProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Clone;
     127      this.cloneProblemButton.Location = new System.Drawing.Point(652, -1);
     128      this.cloneProblemButton.Name = "cloneProblemButton";
     129      this.cloneProblemButton.Size = new System.Drawing.Size(24, 24);
     130      this.cloneProblemButton.TabIndex = 2;
     131      this.toolTip.SetToolTip(this.cloneProblemButton, "Clone Problem");
     132      this.cloneProblemButton.UseVisualStyleBackColor = true;
     133      this.cloneProblemButton.Click += new System.EventHandler(this.cloneProblemButton_Click);
    81134      //
    82135      // OKBProblemView
     
    86139      this.Controls.Add(this.problemComboBox);
    87140      this.Controls.Add(this.problemLabel);
     141      this.Controls.Add(this.cloneProblemButton);
    88142      this.Controls.Add(this.refreshButton);
     143      this.Controls.Add(this.parameterCollectionView);
    89144      this.Name = "OKBProblemView";
    90145      this.Size = new System.Drawing.Size(706, 393);
     146      this.Controls.SetChildIndex(this.refreshButton, 0);
     147      this.Controls.SetChildIndex(this.cloneProblemButton, 0);
     148      this.Controls.SetChildIndex(this.problemLabel, 0);
     149      this.Controls.SetChildIndex(this.descriptionLabel, 0);
     150      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
     151      this.Controls.SetChildIndex(this.nameTextBox, 0);
     152      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
     153      this.Controls.SetChildIndex(this.nameLabel, 0);
     154      this.Controls.SetChildIndex(this.problemComboBox, 0);
     155      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    91156      this.ResumeLayout(false);
    92157      this.PerformLayout();
     
    99164    private System.Windows.Forms.Label problemLabel;
    100165    private System.Windows.Forms.Button refreshButton;
     166    private System.Windows.Forms.Button cloneProblemButton;
     167    private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
    101168
    102169
Note: See TracChangeset for help on using the changeset viewer.