Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/FilterCommandView.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.7 KB
Line 
1namespace HeuristicLab.DataImporter.Command.View {
2  partial class FilterCommandView {
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.numWindowSize = new System.Windows.Forms.NumericUpDown();
27      this.label1 = new System.Windows.Forms.Label();
28      ((System.ComponentModel.ISupportInitialize)(this.numWindowSize)).BeginInit();
29      this.SuspendLayout();
30      //
31      // numWindowSize
32      //
33      this.numWindowSize.Location = new System.Drawing.Point(83, 8);
34      this.numWindowSize.Minimum = new decimal(new int[] {
35            1,
36            0,
37            0,
38            0});
39      this.numWindowSize.Name = "numWindowSize";
40      this.numWindowSize.Size = new System.Drawing.Size(120, 20);
41      this.numWindowSize.TabIndex = 0;
42      this.numWindowSize.Value = new decimal(new int[] {
43            1,
44            0,
45            0,
46            0});
47      this.numWindowSize.ValueChanged += new System.EventHandler(numWindowSize_ValueChanged);
48      //
49      // label1
50      //
51      this.label1.AutoSize = true;
52      this.label1.Location = new System.Drawing.Point(8, 10);
53      this.label1.Name = "label1";
54      this.label1.Size = new System.Drawing.Size(69, 13);
55      this.label1.TabIndex = 1;
56      this.label1.Text = "Window Size";
57      //
58      // FilterCommandView
59      //
60      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
61      this.AutoSize = true;
62      this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
63      this.Controls.Add(this.label1);
64      this.Controls.Add(this.numWindowSize);
65      this.Name = "FilterCommandView";
66      this.Padding = new System.Windows.Forms.Padding(5);
67      this.Size = new System.Drawing.Size(211, 36);
68      ((System.ComponentModel.ISupportInitialize)(this.numWindowSize)).EndInit();
69      this.ResumeLayout(false);
70      this.PerformLayout();
71    }
72    #endregion
73
74    private System.Windows.Forms.NumericUpDown numWindowSize;
75    private System.Windows.Forms.Label label1;
76  }
77}
Note: See TracBrowser for help on using the repository browser.