Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FilterView.Designer.cs @ 10627

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

Implemented Filterview, ComparisonFilterView

File size: 3.6 KB
Line 
1namespace HeuristicLab.DataPreprocessing.Views
2{
3  partial class FilterView
4  {
5    /// <summary>
6    /// Required designer variable.
7    /// </summary>
8    private System.ComponentModel.IContainer components = null;
9
10    /// <summary>
11    /// Clean up any resources being used.
12    /// </summary>
13    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14    protected override void Dispose(bool disposing)
15    {
16      if (disposing && (components != null))
17      {
18        components.Dispose();
19      }
20      base.Dispose(disposing);
21    }
22
23    #region Component Designer generated code
24
25    /// <summary>
26    /// Required method for Designer support - do not modify
27    /// the contents of this method with the code editor.
28    /// </summary>
29    private void InitializeComponent()
30    {
31      this.groupBoxFilter = new System.Windows.Forms.GroupBox();
32      this.groupBoxFilterInfo = new System.Windows.Forms.GroupBox();
33      this.applyFilterButton = new System.Windows.Forms.Button();
34      this.SuspendLayout();
35      //
36      // groupBoxFilter
37      //
38      this.groupBoxFilter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
39            | System.Windows.Forms.AnchorStyles.Right)));
40      this.groupBoxFilter.Location = new System.Drawing.Point(4, 4);
41      this.groupBoxFilter.Name = "groupBoxFilter";
42      this.groupBoxFilter.Size = new System.Drawing.Size(658, 327);
43      this.groupBoxFilter.TabIndex = 0;
44      this.groupBoxFilter.TabStop = false;
45      this.groupBoxFilter.Text = "Filter";
46      //
47      // groupBoxFilterInfo
48      //
49      this.groupBoxFilterInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
50            | System.Windows.Forms.AnchorStyles.Left)
51            | System.Windows.Forms.AnchorStyles.Right)));
52      this.groupBoxFilterInfo.Location = new System.Drawing.Point(4, 337);
53      this.groupBoxFilterInfo.Name = "groupBoxFilterInfo";
54      this.groupBoxFilterInfo.Size = new System.Drawing.Size(659, 130);
55      this.groupBoxFilterInfo.TabIndex = 1;
56      this.groupBoxFilterInfo.TabStop = false;
57      this.groupBoxFilterInfo.Text = "Filter Info";
58      //
59      // applyFilterButton
60      //
61      this.applyFilterButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
62      this.applyFilterButton.Location = new System.Drawing.Point(554, 474);
63      this.applyFilterButton.Name = "applyFilterButton";
64      this.applyFilterButton.Size = new System.Drawing.Size(107, 23);
65      this.applyFilterButton.TabIndex = 2;
66      this.applyFilterButton.Text = "Apply Filters";
67      this.applyFilterButton.UseVisualStyleBackColor = true;
68      this.applyFilterButton.Click += new System.EventHandler(this.applyFilterButton_Click);
69      //
70      // FilterView
71      //
72      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
73      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
74      this.Controls.Add(this.applyFilterButton);
75      this.Controls.Add(this.groupBoxFilterInfo);
76      this.Controls.Add(this.groupBoxFilter);
77      this.Name = "FilterView";
78      this.Size = new System.Drawing.Size(670, 506);
79      this.ResumeLayout(false);
80
81    }
82
83    #endregion
84
85    private System.Windows.Forms.GroupBox groupBoxFilter;
86    private System.Windows.Forms.GroupBox groupBoxFilterInfo;
87    private System.Windows.Forms.Button applyFilterButton;
88
89
90  }
91}
Note: See TracBrowser for help on using the repository browser.