Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2522_RefactorPluginInfrastructure/HeuristicLab.Clients.OKB.Views/3.3/Query/Views/FilterView.Designer.cs @ 15973

Last change on this file since 15973 was 15973, checked in by gkronber, 6 years ago

#2522: merged trunk changes from r13402:15972 to branch resolving conflicts where necessary

File size: 4.8 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.Clients.OKB.Query {
23  partial class FilterView {
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) {
35        if (components != null) 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.label = new System.Windows.Forms.Label();
48      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
49      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
50      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
51      this.splitContainer1.Panel1.SuspendLayout();
52      this.splitContainer1.Panel2.SuspendLayout();
53      this.splitContainer1.SuspendLayout();
54      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
55      this.splitContainer2.SuspendLayout();
56      this.SuspendLayout();
57      //
58      // label
59      //
60      this.label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
61      this.label.Location = new System.Drawing.Point(3, 2);
62      this.label.Name = "label";
63      this.label.Size = new System.Drawing.Size(94, 20);
64      this.label.TabIndex = 0;
65      this.label.Text = "Label";
66      this.label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
67      //
68      // splitContainer1
69      //
70      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
71      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
72      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
73      this.splitContainer1.Name = "splitContainer1";
74      //
75      // splitContainer1.Panel1
76      //
77      this.splitContainer1.Panel1.Controls.Add(this.label);
78      //
79      // splitContainer1.Panel2
80      //
81      this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
82      this.splitContainer1.Size = new System.Drawing.Size(500, 24);
83      this.splitContainer1.SplitterDistance = 100;
84      this.splitContainer1.TabIndex = 0;
85      //
86      // splitContainer2
87      //
88      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
89      this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
90      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
91      this.splitContainer2.Name = "splitContainer2";
92      this.splitContainer2.Size = new System.Drawing.Size(396, 24);
93      this.splitContainer2.SplitterDistance = 106;
94      this.splitContainer2.TabIndex = 0;
95      //
96      // FilterView
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100      this.Controls.Add(this.splitContainer1);
101      this.Name = "FilterView";
102      this.Size = new System.Drawing.Size(500, 24);
103      this.splitContainer1.Panel1.ResumeLayout(false);
104      this.splitContainer1.Panel2.ResumeLayout(false);
105      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
106      this.splitContainer1.ResumeLayout(false);
107      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
108      this.splitContainer2.ResumeLayout(false);
109      this.ResumeLayout(false);
110
111    }
112
113    #endregion
114
115    protected System.Windows.Forms.Label label;
116    protected System.Windows.Forms.SplitContainer splitContainer1;
117    protected System.Windows.Forms.SplitContainer splitContainer2;
118
119
120  }
121}
Note: See TracBrowser for help on using the repository browser.