Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/14 17:37:19 (11 years ago)
Author:
psteiner
Message:

Implemented Filterview, ComparisonFilterView

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3

    • Property svn:ignore set to
      ComparisonFilterView.resx
      FilterView.resx
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ComparisonFilterView.Designer.cs

    r10558 r10589  
    4545    /// </summary>
    4646    private void InitializeComponent() {
    47       this.label1 = new System.Windows.Forms.Label();
     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();
    4853      this.SuspendLayout();
    4954      //
    50       // label1
     55      // lblAttr
    5156      //
    52       this.label1.AutoSize = true;
    53       this.label1.Location = new System.Drawing.Point(312, 120);
    54       this.label1.Name = "label1";
    55       this.label1.Size = new System.Drawing.Size(35, 13);
    56       this.label1.TabIndex = 0;
    57       this.label1.Text = "label1";
     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;
    58110      //
    59111      // ComparisonFilterView
     
    61113      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    62114      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    63       this.Controls.Add(this.label1);
     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);
    64121      this.Name = "ComparisonFilterView";
    65       this.Size = new System.Drawing.Size(615, 503);
     122      this.Size = new System.Drawing.Size(348, 97);
    66123      this.ResumeLayout(false);
    67124      this.PerformLayout();
     
    71128    #endregion
    72129
    73     private System.Windows.Forms.Label label1;
     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;
    74136
    75137  }
Note: See TracChangeset for help on using the changeset viewer.