Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/25/10 02:34:23 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • continued work on adapting and refactoring HeuristicLab.Data according to the changes in HeuristicLab.Core
  • unified visual appearance of views
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleDataView.Designer.cs

    r2665 r2676  
    4545    /// </summary>
    4646    private void InitializeComponent() {
     47      this.components = new System.ComponentModel.Container();
    4748      this.valueTextBox = new System.Windows.Forms.TextBox();
     49      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
     50      this.valueLabel = new System.Windows.Forms.Label();
     51      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    4852      this.SuspendLayout();
    4953      //
     
    5256      this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    5357                  | System.Windows.Forms.AnchorStyles.Right)));
    54       this.valueTextBox.Location = new System.Drawing.Point(3, 0);
     58      this.valueTextBox.Location = new System.Drawing.Point(56, 0);
    5559      this.valueTextBox.Name = "valueTextBox";
    56       this.valueTextBox.Size = new System.Drawing.Size(244, 20);
    57       this.valueTextBox.TabIndex = 0;
     60      this.valueTextBox.Size = new System.Drawing.Size(194, 20);
     61      this.valueTextBox.TabIndex = 1;
    5862      this.valueTextBox.Validated += new System.EventHandler(this.valueTextBox_Validated);
     63      this.valueTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.valueTextBox_KeyDown);
    5964      this.valueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.valueTextBox_Validating);
     65      //
     66      // errorProvider
     67      //
     68      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     69      this.errorProvider.ContainerControl = this;
     70      //
     71      // valueLabel
     72      //
     73      this.valueLabel.AutoSize = true;
     74      this.valueLabel.Location = new System.Drawing.Point(3, 3);
     75      this.valueLabel.Name = "valueLabel";
     76      this.valueLabel.Size = new System.Drawing.Size(37, 13);
     77      this.valueLabel.TabIndex = 0;
     78      this.valueLabel.Text = "&Value:";
    6079      //
    6180      // StringConvertibleDataView
     
    6382      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    6483      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     84      this.Controls.Add(this.valueLabel);
    6585      this.Controls.Add(this.valueTextBox);
    6686      this.Name = "StringConvertibleDataView";
    67       this.Size = new System.Drawing.Size(250, 34);
     87      this.Size = new System.Drawing.Size(250, 38);
     88      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    6889      this.ResumeLayout(false);
    6990      this.PerformLayout();
     
    7495
    7596    private System.Windows.Forms.TextBox valueTextBox;
     97    private System.Windows.Forms.ErrorProvider errorProvider;
     98    private System.Windows.Forms.Label valueLabel;
    7699  }
    77100}
Note: See TracChangeset for help on using the changeset viewer.