Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/06/10 03:30:37 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments on version r2917.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.Designer.cs

    r2924 r2948  
    3333    protected override void Dispose(bool disposing) {
    3434      if (disposing) {
     35        if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
    3536        if (components != null) components.Dispose();
    3637      }
     
    4849      this.valuePanel = new System.Windows.Forms.Panel();
    4950      this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     51      this.clearValueButton = new System.Windows.Forms.Button();
     52      this.setValueButton = new System.Windows.Forms.Button();
    5053      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5154      this.valueGroupBox.SuspendLayout();
    5255      this.valuePanel.SuspendLayout();
    5356      this.SuspendLayout();
    54       //
    55       // dataTypeLabel
    56       //
    57       this.dataTypeLabel.Location = new System.Drawing.Point(3, 55);
    5857      //
    5958      // dataTypeTextBox
     
    8079                  | System.Windows.Forms.AnchorStyles.Right)));
    8180      this.valueGroupBox.Controls.Add(this.valuePanel);
     81      this.valueGroupBox.Controls.Add(this.clearValueButton);
     82      this.valueGroupBox.Controls.Add(this.setValueButton);
    8283      this.valueGroupBox.Location = new System.Drawing.Point(0, 78);
    8384      this.valueGroupBox.Name = "valueGroupBox";
     
    9495                  | System.Windows.Forms.AnchorStyles.Right)));
    9596      this.valuePanel.Controls.Add(this.viewHost);
    96       this.valuePanel.Location = new System.Drawing.Point(6, 19);
     97      this.valuePanel.Location = new System.Drawing.Point(6, 49);
    9798      this.valuePanel.Name = "valuePanel";
    98       this.valuePanel.Size = new System.Drawing.Size(374, 212);
     99      this.valuePanel.Size = new System.Drawing.Size(374, 182);
    99100      this.valuePanel.TabIndex = 0;
    100101      this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
     
    108109      this.viewHost.Location = new System.Drawing.Point(0, 0);
    109110      this.viewHost.Name = "viewHost";
    110       this.viewHost.Size = new System.Drawing.Size(374, 212);
     111      this.viewHost.Size = new System.Drawing.Size(374, 182);
    111112      this.viewHost.TabIndex = 0;
    112113      this.viewHost.ViewType = null;
     114      //
     115      // clearValueButton
     116      //
     117      this.clearValueButton.Enabled = false;
     118      this.clearValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     119      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
     120      this.clearValueButton.Name = "clearValueButton";
     121      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
     122      this.clearValueButton.TabIndex = 1;
     123      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
     124      this.clearValueButton.UseVisualStyleBackColor = true;
     125      this.clearValueButton.Click += new System.EventHandler(this.setValueButton_Click);
     126      //
     127      // setValueButton
     128      //
     129      this.setValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     130      this.setValueButton.Location = new System.Drawing.Point(6, 19);
     131      this.setValueButton.Name = "setValueButton";
     132      this.setValueButton.Size = new System.Drawing.Size(24, 24);
     133      this.setValueButton.TabIndex = 0;
     134      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
     135      this.setValueButton.UseVisualStyleBackColor = true;
     136      this.setValueButton.Click += new System.EventHandler(this.changeValueButton_Click);
    113137      //
    114138      // ValueParameterView
     
    139163    protected System.Windows.Forms.Panel valuePanel;
    140164    protected HeuristicLab.Core.Views.ViewHost viewHost;
     165    protected System.Windows.Forms.Button setValueButton;
     166    protected System.Windows.Forms.Button clearValueButton;
    141167  }
    142168}
Note: See TracChangeset for help on using the changeset viewer.