Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/VariablesNodeView.Designer.cs @ 11452

Last change on this file since 11452 was 11452, checked in by swagner, 10 years ago

#2205: Worked on optimization networks

File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Optimization.Networks.Views {
23  partial class VariablesNodeView {
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.splitContainer = new System.Windows.Forms.SplitContainer();
48      this.variableCollectionView = new HeuristicLab.Core.Views.VariableCollectionView();
49      this.portCollectionView = new HeuristicLab.Optimization.Networks.Views.PortCollectionView();
50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
51      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
52      this.splitContainer.Panel1.SuspendLayout();
53      this.splitContainer.Panel2.SuspendLayout();
54      this.splitContainer.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // nameTextBox
58      //
59      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
60      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
61      //
62      // splitContainer
63      //
64      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
65            | System.Windows.Forms.AnchorStyles.Left)
66            | System.Windows.Forms.AnchorStyles.Right)));
67      this.splitContainer.Location = new System.Drawing.Point(0, 26);
68      this.splitContainer.Name = "splitContainer";
69      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
70      //
71      // splitContainer.Panel1
72      //
73      this.splitContainer.Panel1.Controls.Add(this.portCollectionView);
74      //
75      // splitContainer.Panel2
76      //
77      this.splitContainer.Panel2.Controls.Add(this.variableCollectionView);
78      this.splitContainer.Size = new System.Drawing.Size(645, 491);
79      this.splitContainer.SplitterDistance = 237;
80      this.splitContainer.TabIndex = 3;
81      //
82      // variableCollectionView
83      //
84      this.variableCollectionView.Caption = "VariableCollection View";
85      this.variableCollectionView.Content = null;
86      this.variableCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
87      this.variableCollectionView.Location = new System.Drawing.Point(0, 0);
88      this.variableCollectionView.Name = "variableCollectionView";
89      this.variableCollectionView.ReadOnly = false;
90      this.variableCollectionView.ShowDetails = true;
91      this.variableCollectionView.Size = new System.Drawing.Size(645, 250);
92      this.variableCollectionView.TabIndex = 0;
93      //
94      // portCollectionView
95      //
96      this.portCollectionView.Caption = "PortCollection View";
97      this.portCollectionView.Content = null;
98      this.portCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
99      this.portCollectionView.Location = new System.Drawing.Point(0, 0);
100      this.portCollectionView.Name = "portCollectionView";
101      this.portCollectionView.ReadOnly = false;
102      this.portCollectionView.ShowDetails = true;
103      this.portCollectionView.Size = new System.Drawing.Size(645, 237);
104      this.portCollectionView.TabIndex = 0;
105      //
106      // VariablesNodeView
107      //
108      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
109      this.Controls.Add(this.splitContainer);
110      this.Name = "VariablesNodeView";
111      this.Controls.SetChildIndex(this.nameLabel, 0);
112      this.Controls.SetChildIndex(this.nameTextBox, 0);
113      this.Controls.SetChildIndex(this.infoLabel, 0);
114      this.Controls.SetChildIndex(this.splitContainer, 0);
115      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
116      this.splitContainer.Panel1.ResumeLayout(false);
117      this.splitContainer.Panel2.ResumeLayout(false);
118      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
119      this.splitContainer.ResumeLayout(false);
120      this.ResumeLayout(false);
121      this.PerformLayout();
122
123    }
124
125    #endregion
126
127    protected System.Windows.Forms.SplitContainer splitContainer;
128    protected Core.Views.VariableCollectionView variableCollectionView;
129    private PortCollectionView portCollectionView;
130
131
132  }
133}
Note: See TracBrowser for help on using the repository browser.