Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.DataPreprocessing.Views/3.4/TransformationView.Designer.cs @ 11159

Last change on this file since 11159 was 11068, checked in by mkommend, 10 years ago

#2206: Removed seperate plugin for transformations and integrated them in HeuristicLab.Problems.DataAnalysis.

File size: 5.5 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 TransformationView {
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.applyButton = new System.Windows.Forms.Button();
48      this.preserveColumnsCheckbox = new System.Windows.Forms.CheckBox();
49      this.lblFilterNotice = new System.Windows.Forms.Label();
50      this.transformationListView = new HeuristicLab.DataPreprocessing.Views.CheckedTransformationListView();
51      this.SuspendLayout();
52      //
53      // applyButton
54      //
55      this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
56      this.applyButton.Location = new System.Drawing.Point(490, 488);
57      this.applyButton.Name = "applyButton";
58      this.applyButton.Size = new System.Drawing.Size(134, 23);
59      this.applyButton.TabIndex = 1;
60      this.applyButton.Text = "Apply Transformations";
61      this.applyButton.UseVisualStyleBackColor = true;
62      this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
63      //
64      // preserveColumnsCheckbox
65      //
66      this.preserveColumnsCheckbox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67      this.preserveColumnsCheckbox.AutoSize = true;
68      this.preserveColumnsCheckbox.Location = new System.Drawing.Point(337, 492);
69      this.preserveColumnsCheckbox.Name = "preserveColumnsCheckbox";
70      this.preserveColumnsCheckbox.Size = new System.Drawing.Size(147, 17);
71      this.preserveColumnsCheckbox.TabIndex = 2;
72      this.preserveColumnsCheckbox.Text = "Preserve original Columns";
73      this.preserveColumnsCheckbox.UseVisualStyleBackColor = true;
74      //
75      // lblFilterNotice
76      //
77      this.lblFilterNotice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
78      this.lblFilterNotice.AutoSize = true;
79      this.lblFilterNotice.Location = new System.Drawing.Point(20, 493);
80      this.lblFilterNotice.Name = "lblFilterNotice";
81      this.lblFilterNotice.Size = new System.Drawing.Size(274, 13);
82      this.lblFilterNotice.TabIndex = 3;
83      this.lblFilterNotice.Text = "Transformations cannot be applied since a filter is active!";
84      this.lblFilterNotice.Visible = false;
85      //
86      // transformationListView
87      //
88      this.transformationListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
89            | System.Windows.Forms.AnchorStyles.Left)
90            | System.Windows.Forms.AnchorStyles.Right)));
91      this.transformationListView.Caption = "Transformations";
92      this.transformationListView.Content = null;
93      this.transformationListView.Location = new System.Drawing.Point(0, 0);
94      this.transformationListView.Name = "transformationListView";
95      this.transformationListView.ReadOnly = false;
96      this.transformationListView.Size = new System.Drawing.Size(627, 482);
97      this.transformationListView.TabIndex = 0;
98      //
99      // TransformationView
100      //
101      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
102      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
103      this.Controls.Add(this.lblFilterNotice);
104      this.Controls.Add(this.preserveColumnsCheckbox);
105      this.Controls.Add(this.applyButton);
106      this.Controls.Add(this.transformationListView);
107      this.Name = "TransformationView";
108      this.Size = new System.Drawing.Size(627, 514);
109      this.ResumeLayout(false);
110      this.PerformLayout();
111
112    }
113
114    #endregion
115    private CheckedTransformationListView transformationListView;
116    private System.Windows.Forms.Button applyButton;
117    private System.Windows.Forms.CheckBox preserveColumnsCheckbox;
118    private System.Windows.Forms.Label lblFilterNotice;
119  }
120}
Note: See TracBrowser for help on using the repository browser.