Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/LinearTransformationCommandView.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: 3.3 KB
Line 
1namespace HeuristicLab.DataImporter.Command.View {
2  partial class LinearTransformationCommandView {
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.label1 = new System.Windows.Forms.Label();
27      this.label2 = new System.Windows.Forms.Label();
28      this.txtSlope = new System.Windows.Forms.TextBox();
29      this.txtOffset = new System.Windows.Forms.TextBox();
30      this.SuspendLayout();
31      //
32      // label1
33      //
34      this.label1.AutoSize = true;
35      this.label1.Location = new System.Drawing.Point(8, 10);
36      this.label1.Name = "label1";
37      this.label1.Size = new System.Drawing.Size(34, 13);
38      this.label1.TabIndex = 1;
39      this.label1.Text = "Slope";
40      //
41      // label2
42      //
43      this.label2.Location = new System.Drawing.Point(8, 36);
44      this.label2.Name = "label2";
45      this.label2.Size = new System.Drawing.Size(48, 13);
46      this.label2.TabIndex = 2;
47      this.label2.Text = "Offset";
48      //
49      // txtSlope
50      //
51      this.txtSlope.Location = new System.Drawing.Point(62, 7);
52      this.txtSlope.Name = "txtSlope";
53      this.txtSlope.Size = new System.Drawing.Size(100, 20);
54      this.txtSlope.TabIndex = 0;
55      this.txtSlope.Text = "0";
56      this.txtSlope.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
57      //
58      // txtOffset
59      //
60      this.txtOffset.Location = new System.Drawing.Point(62, 33);
61      this.txtOffset.Name = "txtOffset";
62      this.txtOffset.Size = new System.Drawing.Size(100, 20);
63      this.txtOffset.TabIndex = 1;
64      this.txtOffset.Text = "0";
65      this.txtOffset.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
66      //
67      // LinearTransformationCommandView
68      //
69      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
70      this.AutoSize = true;
71      this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
72      this.Controls.Add(this.txtOffset);
73      this.Controls.Add(this.txtSlope);
74      this.Controls.Add(this.label2);
75      this.Controls.Add(this.label1);
76      this.Name = "LinearTransformationCommandView";
77      this.Padding = new System.Windows.Forms.Padding(5);
78      this.Size = new System.Drawing.Size(170, 61);
79      this.ResumeLayout(false);
80      this.PerformLayout();
81
82    }
83
84    #endregion
85
86    private System.Windows.Forms.Label label1;
87    private System.Windows.Forms.Label label2;
88    private System.Windows.Forms.TextBox txtSlope;
89    private System.Windows.Forms.TextBox txtOffset;
90  }
91}
Note: See TracBrowser for help on using the repository browser.