Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/06/08 02:48:48 (16 years ago)
Author:
swagner
Message:

Worked on ticket #48

  • adapted CombinedOperator to offer a possibility for defining variable infos
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/CombinedOperatorView.Designer.cs

    r2 r52  
    5656      this.descriptionTabPage = new System.Windows.Forms.TabPage();
    5757      this.descriptionTextBox = new System.Windows.Forms.TextBox();
     58      this.removeVariableInfoButton = new System.Windows.Forms.Button();
     59      this.addVariableInfoButton = new System.Windows.Forms.Button();
    5860      this.tabControl.SuspendLayout();
    5961      this.operatorGraphTabPage.SuspendLayout();
     
    101103      // variableInfosTabPage
    102104      //
     105      this.variableInfosTabPage.Controls.Add(this.removeVariableInfoButton);
     106      this.variableInfosTabPage.Controls.Add(this.addVariableInfoButton);
    103107      this.variableInfosTabPage.Controls.Add(this.operatorBaseVariableInfosView);
    104108      this.variableInfosTabPage.Location = new System.Drawing.Point(4, 22);
     
    112116      // operatorBaseVariableInfosView
    113117      //
     118      this.operatorBaseVariableInfosView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     119                  | System.Windows.Forms.AnchorStyles.Left)
     120                  | System.Windows.Forms.AnchorStyles.Right)));
    114121      this.operatorBaseVariableInfosView.Caption = "Operator";
    115       this.operatorBaseVariableInfosView.Dock = System.Windows.Forms.DockStyle.Fill;
    116122      this.operatorBaseVariableInfosView.Location = new System.Drawing.Point(3, 3);
    117123      this.operatorBaseVariableInfosView.Name = "operatorBaseVariableInfosView";
    118124      this.operatorBaseVariableInfosView.Operator = null;
    119       this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(383, 303);
     125      this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(383, 274);
    120126      this.operatorBaseVariableInfosView.TabIndex = 0;
     127      this.operatorBaseVariableInfosView.SelectedVariableInfosChanged += new System.EventHandler(this.operatorBaseVariableInfosView_SelectedVariableInfosChanged);
    121128      //
    122129      // variablesTabPage
     
    184191      this.descriptionTextBox.TabIndex = 0;
    185192      this.descriptionTextBox.Validated += new System.EventHandler(this.descriptionTextBox_Validated);
     193      //
     194      // removeVariableInfoButton
     195      //
     196      this.removeVariableInfoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     197      this.removeVariableInfoButton.Enabled = false;
     198      this.removeVariableInfoButton.Location = new System.Drawing.Point(84, 283);
     199      this.removeVariableInfoButton.Name = "removeVariableInfoButton";
     200      this.removeVariableInfoButton.Size = new System.Drawing.Size(75, 23);
     201      this.removeVariableInfoButton.TabIndex = 2;
     202      this.removeVariableInfoButton.Text = "&Remove";
     203      this.removeVariableInfoButton.UseVisualStyleBackColor = true;
     204      this.removeVariableInfoButton.Click += new System.EventHandler(this.removeVariableInfoButton_Click);
     205      //
     206      // addVariableInfoButton
     207      //
     208      this.addVariableInfoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     209      this.addVariableInfoButton.Location = new System.Drawing.Point(3, 283);
     210      this.addVariableInfoButton.Name = "addVariableInfoButton";
     211      this.addVariableInfoButton.Size = new System.Drawing.Size(75, 23);
     212      this.addVariableInfoButton.TabIndex = 1;
     213      this.addVariableInfoButton.Text = "&Add...";
     214      this.addVariableInfoButton.UseVisualStyleBackColor = true;
     215      this.addVariableInfoButton.Click += new System.EventHandler(this.addVariableInfoButton_Click);
    186216      //
    187217      // CombinedOperatorView
     
    216246    private HeuristicLab.Core.OperatorBaseVariablesView operatorBaseVariablesView;
    217247    private HeuristicLab.Core.ConstrainedItemBaseView constrainedItemBaseView;
     248    private System.Windows.Forms.Button removeVariableInfoButton;
     249    private System.Windows.Forms.Button addVariableInfoButton;
    218250
    219251  }
Note: See TracChangeset for help on using the changeset viewer.