Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/ProgrammableColumnCommandView.Designer.cs @ 6133

Last change on this file since 6133 was 6133, checked in by gkronber, 13 years ago

#1471: imported generic parts of DataImporter from private code base

File size: 2.5 KB
Line 
1namespace HeuristicLab.DataImporter.Command.View {
2  partial class ProgrammableColumnCommandView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.expressionLabel = new System.Windows.Forms.Label();
27      this.expressionTextBox = new System.Windows.Forms.TextBox();
28      this.SuspendLayout();
29      //
30      // expressionLabel
31      //
32      this.expressionLabel.AutoSize = true;
33      this.expressionLabel.Location = new System.Drawing.Point(8, 10);
34      this.expressionLabel.Name = "expressionLabel";
35      this.expressionLabel.Size = new System.Drawing.Size(61, 13);
36      this.expressionLabel.TabIndex = 1;
37      this.expressionLabel.Text = "Expression:";
38      //
39      // expressionTextBox
40      //
41      this.expressionTextBox.Location = new System.Drawing.Point(79, 7);
42      this.expressionTextBox.Name = "expressionTextBox";
43      this.expressionTextBox.Size = new System.Drawing.Size(187, 20);
44      this.expressionTextBox.TabIndex = 2;
45      this.expressionTextBox.TextChanged += new System.EventHandler(this.expressionTextBox_TextChanged);
46      //
47      // ProgrammableColumnCommandView
48      //
49      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
50      this.AutoSize = true;
51      this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
52      this.Controls.Add(this.expressionTextBox);
53      this.Controls.Add(this.expressionLabel);
54      this.Name = "ProgrammableColumnCommandView";
55      this.Padding = new System.Windows.Forms.Padding(5);
56      this.Size = new System.Drawing.Size(274, 35);
57      this.ResumeLayout(false);
58      this.PerformLayout();
59
60    }
61
62    #endregion
63
64    private System.Windows.Forms.Label expressionLabel;
65    private System.Windows.Forms.TextBox expressionTextBox;
66  }
67}
Note: See TracBrowser for help on using the repository browser.