Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2906_Transformations/HeuristicLab.DataPreprocessing.Views/3.4/TransformationView.Designer.cs @ 15865

Last change on this file since 15865 was 15865, checked in by pfleck, 6 years ago

#2906 Added PreprocessingTransformation as a custom view-model for transformations in preprocessing.

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