Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/ThresholdCommandView.Designer.cs @ 9615

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

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

File size: 2.3 KB
Line 
1namespace HeuristicLab.DataImporter.Command.View {
2  partial class ThresholdCommandView {
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.txtThreshold = new System.Windows.Forms.TextBox();
28      this.SuspendLayout();
29      //
30      // label1
31      //
32      this.label1.AutoSize = true;
33      this.label1.Location = new System.Drawing.Point(8, 10);
34      this.label1.Name = "label1";
35      this.label1.Size = new System.Drawing.Size(54, 13);
36      this.label1.TabIndex = 1;
37      this.label1.Text = "Threshold";
38      //
39      // txtThreshold
40      //
41      this.txtThreshold.Location = new System.Drawing.Point(62, 7);
42      this.txtThreshold.Name = "txtThreshold";
43      this.txtThreshold.Size = new System.Drawing.Size(100, 20);
44      this.txtThreshold.TabIndex = 0;
45      this.txtThreshold.Text = "0";
46      this.txtThreshold.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
47      //
48      // ThresholdCommandView
49      //
50      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
51      this.AutoSize = true;
52      this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
53      this.Controls.Add(this.txtThreshold);
54      this.Controls.Add(this.label1);
55      this.Name = "ThresholdCommandView";
56      this.Padding = new System.Windows.Forms.Padding(5);
57      this.Size = new System.Drawing.Size(170, 35);
58      this.ResumeLayout(false);
59      this.PerformLayout();
60
61    }
62
63    #endregion
64
65    private System.Windows.Forms.Label label1;
66    private System.Windows.Forms.TextBox txtThreshold;
67  }
68}
Note: See TracBrowser for help on using the repository browser.