Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ComparisonFilterView.Designer.cs @ 10589

Last change on this file since 10589 was 10589, checked in by psteiner, 10 years ago

Implemented Filterview, ComparisonFilterView

File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.DataPreprocessing.Views {
23  partial class ComparisonFilterView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.lblAttr = new System.Windows.Forms.Label();
48      this.lblFilterOperation = new System.Windows.Forms.Label();
49      this.lblFilterData = new System.Windows.Forms.Label();
50      this.cbAttr = new System.Windows.Forms.ComboBox();
51      this.cbFilterOperation = new System.Windows.Forms.ComboBox();
52      this.tbFilterData = new System.Windows.Forms.TextBox();
53      this.SuspendLayout();
54      //
55      // lblAttr
56      //
57      this.lblAttr.AutoSize = true;
58      this.lblAttr.Location = new System.Drawing.Point(3, 15);
59      this.lblAttr.Name = "lblAttr";
60      this.lblAttr.Size = new System.Drawing.Size(49, 13);
61      this.lblAttr.TabIndex = 0;
62      this.lblAttr.Text = "Attribute:";
63      //
64      // lblFilterOperation
65      //
66      this.lblFilterOperation.AutoSize = true;
67      this.lblFilterOperation.Location = new System.Drawing.Point(3, 42);
68      this.lblFilterOperation.Name = "lblFilterOperation";
69      this.lblFilterOperation.Size = new System.Drawing.Size(81, 13);
70      this.lblFilterOperation.TabIndex = 1;
71      this.lblFilterOperation.Text = "Filter Operation:";
72      //
73      // lblFilterData
74      //
75      this.lblFilterData.AutoSize = true;
76      this.lblFilterData.Location = new System.Drawing.Point(3, 69);
77      this.lblFilterData.Name = "lblFilterData";
78      this.lblFilterData.Size = new System.Drawing.Size(58, 13);
79      this.lblFilterData.TabIndex = 2;
80      this.lblFilterData.Text = "Filter Data:";
81      //
82      // cbAttr
83      //
84      this.cbAttr.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
85            | System.Windows.Forms.AnchorStyles.Right)));
86      this.cbAttr.FormattingEnabled = true;
87      this.cbAttr.Location = new System.Drawing.Point(92, 12);
88      this.cbAttr.Name = "cbAttr";
89      this.cbAttr.Size = new System.Drawing.Size(247, 21);
90      this.cbAttr.TabIndex = 3;
91      //
92      // cbFilterOperation
93      //
94      this.cbFilterOperation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
95            | System.Windows.Forms.AnchorStyles.Right)));
96      this.cbFilterOperation.FormattingEnabled = true;
97      this.cbFilterOperation.Location = new System.Drawing.Point(92, 39);
98      this.cbFilterOperation.Name = "cbFilterOperation";
99      this.cbFilterOperation.Size = new System.Drawing.Size(247, 21);
100      this.cbFilterOperation.TabIndex = 4;
101      //
102      // tbFilterData
103      //
104      this.tbFilterData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
105            | System.Windows.Forms.AnchorStyles.Right)));
106      this.tbFilterData.Location = new System.Drawing.Point(92, 67);
107      this.tbFilterData.Name = "tbFilterData";
108      this.tbFilterData.Size = new System.Drawing.Size(247, 20);
109      this.tbFilterData.TabIndex = 5;
110      //
111      // ComparisonFilterView
112      //
113      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
114      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
115      this.Controls.Add(this.tbFilterData);
116      this.Controls.Add(this.cbFilterOperation);
117      this.Controls.Add(this.cbAttr);
118      this.Controls.Add(this.lblFilterData);
119      this.Controls.Add(this.lblFilterOperation);
120      this.Controls.Add(this.lblAttr);
121      this.Name = "ComparisonFilterView";
122      this.Size = new System.Drawing.Size(348, 97);
123      this.ResumeLayout(false);
124      this.PerformLayout();
125
126    }
127
128    #endregion
129
130    private System.Windows.Forms.Label lblAttr;
131    private System.Windows.Forms.Label lblFilterOperation;
132    private System.Windows.Forms.Label lblFilterData;
133    private System.Windows.Forms.ComboBox cbAttr;
134    private System.Windows.Forms.ComboBox cbFilterOperation;
135    private System.Windows.Forms.TextBox tbFilterData;
136
137  }
138}
Note: See TracBrowser for help on using the repository browser.