Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/14 15:51:41 (10 years ago)
Author:
psteiner
Message:

filter or combination
filter control: checkedlistview

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FilterView.Designer.cs

    r10713 r10785  
    3030    {
    3131      this.groupBoxFilter = new System.Windows.Forms.GroupBox();
     32      this.checkedFilterView = new HeuristicLab.DataPreprocessing.Views.CheckedFilterCollectionView();
    3233      this.groupBoxFilterInfo = new System.Windows.Forms.GroupBox();
    3334      this.lblPercentage = new System.Windows.Forms.Label();
     
    3839      this.lblTotal = new System.Windows.Forms.Label();
    3940      this.applyFilterButton = new System.Windows.Forms.Button();
     41      this.rBtnOr = new System.Windows.Forms.RadioButton();
     42      this.rBtnAnd = new System.Windows.Forms.RadioButton();
     43      this.btnReset = new System.Windows.Forms.Button();
     44      this.groupBoxFilter.SuspendLayout();
    4045      this.groupBoxFilterInfo.SuspendLayout();
    4146      this.SuspendLayout();
     
    4550      this.groupBoxFilter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    4651            | System.Windows.Forms.AnchorStyles.Right)));
     52      this.groupBoxFilter.Controls.Add(this.checkedFilterView);
    4753      this.groupBoxFilter.Location = new System.Drawing.Point(4, 4);
    4854      this.groupBoxFilter.Name = "groupBoxFilter";
     
    5258      this.groupBoxFilter.Text = "Filter";
    5359      //
     60      // checkedFilterView
     61      //
     62      this.checkedFilterView.Caption = "filterView";
     63      this.checkedFilterView.Content = null;
     64      this.checkedFilterView.Dock = System.Windows.Forms.DockStyle.Fill;
     65      this.checkedFilterView.Location = new System.Drawing.Point(3, 16);
     66      this.checkedFilterView.Name = "checkedFilterView";
     67      this.checkedFilterView.ReadOnly = false;
     68      this.checkedFilterView.ShowDetails = true;
     69      this.checkedFilterView.Size = new System.Drawing.Size(652, 308);
     70      this.checkedFilterView.TabIndex = 0;
     71      //
    5472      // groupBoxFilterInfo
    5573      //
    56       this.groupBoxFilterInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    57             | System.Windows.Forms.AnchorStyles.Left)
     74      this.groupBoxFilterInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    5875            | System.Windows.Forms.AnchorStyles.Right)));
    5976      this.groupBoxFilterInfo.Controls.Add(this.lblPercentage);
     
    139156      this.applyFilterButton.Click += new System.EventHandler(this.applyFilterButton_Click);
    140157      //
     158      // rBtnOr
     159      //
     160      this.rBtnOr.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     161      this.rBtnOr.AutoSize = true;
     162      this.rBtnOr.Enabled = false;
     163      this.rBtnOr.Location = new System.Drawing.Point(60, 480);
     164      this.rBtnOr.Name = "rBtnOr";
     165      this.rBtnOr.Size = new System.Drawing.Size(36, 17);
     166      this.rBtnOr.TabIndex = 3;
     167      this.rBtnOr.Text = "Or";
     168      this.rBtnOr.UseVisualStyleBackColor = true;
     169      //
     170      // rBtnAnd
     171      //
     172      this.rBtnAnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     173      this.rBtnAnd.AutoSize = true;
     174      this.rBtnAnd.Checked = true;
     175      this.rBtnAnd.Enabled = false;
     176      this.rBtnAnd.Location = new System.Drawing.Point(10, 480);
     177      this.rBtnAnd.Name = "rBtnAnd";
     178      this.rBtnAnd.Size = new System.Drawing.Size(44, 17);
     179      this.rBtnAnd.TabIndex = 4;
     180      this.rBtnAnd.TabStop = true;
     181      this.rBtnAnd.Text = "And";
     182      this.rBtnAnd.UseVisualStyleBackColor = true;
     183      this.rBtnAnd.CheckedChanged += new System.EventHandler(this.rBtnAnd_CheckedChanged);
     184      //
     185      // btnReset
     186      //
     187      this.btnReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     188      this.btnReset.Enabled = false;
     189      this.btnReset.Location = new System.Drawing.Point(473, 473);
     190      this.btnReset.Name = "btnReset";
     191      this.btnReset.Size = new System.Drawing.Size(75, 23);
     192      this.btnReset.TabIndex = 5;
     193      this.btnReset.Text = "Reset";
     194      this.btnReset.UseVisualStyleBackColor = true;
     195      this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     196      //
    141197      // FilterView
    142198      //
    143199      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    144200      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     201      this.Controls.Add(this.btnReset);
     202      this.Controls.Add(this.rBtnAnd);
     203      this.Controls.Add(this.rBtnOr);
    145204      this.Controls.Add(this.applyFilterButton);
    146205      this.Controls.Add(this.groupBoxFilterInfo);
     
    148207      this.Name = "FilterView";
    149208      this.Size = new System.Drawing.Size(670, 506);
     209      this.groupBoxFilter.ResumeLayout(false);
    150210      this.groupBoxFilterInfo.ResumeLayout(false);
    151211      this.groupBoxFilterInfo.PerformLayout();
    152212      this.ResumeLayout(false);
     213      this.PerformLayout();
    153214
    154215    }
     
    165226    private System.Windows.Forms.TextBox tbFiltered;
    166227    private System.Windows.Forms.Label lblFiltered;
     228    private System.Windows.Forms.RadioButton rBtnOr;
     229    private System.Windows.Forms.RadioButton rBtnAnd;
     230    private CheckedFilterCollectionView checkedFilterView;
     231    private System.Windows.Forms.Button btnReset;
    167232
    168233
Note: See TracChangeset for help on using the changeset viewer.