Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/PortView.Designer.cs @ 11412

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

#2205: Worked on optimization networks

File size: 5.3 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 PortView {
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.valueGroupBox = new System.Windows.Forms.GroupBox();
48      this.valuePanel = new System.Windows.Forms.Panel();
49      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
51      this.valueGroupBox.SuspendLayout();
52      this.valuePanel.SuspendLayout();
53      this.SuspendLayout();
54      //
55      // nameTextBox
56      //
57      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
58      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
59      this.nameTextBox.Location = new System.Drawing.Point(69, 0);
60      this.nameTextBox.Size = new System.Drawing.Size(551, 20);
61      //
62      // infoLabel
63      //
64      this.infoLabel.Location = new System.Drawing.Point(626, 3);
65      //
66      // valueGroupBox
67      //
68      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69            | System.Windows.Forms.AnchorStyles.Left)
70            | System.Windows.Forms.AnchorStyles.Right)));
71      this.valueGroupBox.Controls.Add(this.valuePanel);
72      this.valueGroupBox.Location = new System.Drawing.Point(0, 26);
73      this.valueGroupBox.Name = "valueGroupBox";
74      this.valueGroupBox.Size = new System.Drawing.Size(645, 491);
75      this.valueGroupBox.TabIndex = 3;
76      this.valueGroupBox.TabStop = false;
77      this.valueGroupBox.Text = "Value";
78      //
79      // valuePanel
80      //
81      this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
82            | System.Windows.Forms.AnchorStyles.Left)
83            | System.Windows.Forms.AnchorStyles.Right)));
84      this.valuePanel.Controls.Add(this.valueViewHost);
85      this.valuePanel.Location = new System.Drawing.Point(6, 19);
86      this.valuePanel.Name = "valuePanel";
87      this.valuePanel.Size = new System.Drawing.Size(633, 466);
88      this.valuePanel.TabIndex = 0;
89      //
90      // valueViewHost
91      //
92      this.valueViewHost.Caption = "View";
93      this.valueViewHost.Content = null;
94      this.valueViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
95      this.valueViewHost.Enabled = false;
96      this.valueViewHost.Location = new System.Drawing.Point(0, 0);
97      this.valueViewHost.Name = "valueViewHost";
98      this.valueViewHost.ReadOnly = false;
99      this.valueViewHost.Size = new System.Drawing.Size(633, 466);
100      this.valueViewHost.TabIndex = 0;
101      this.valueViewHost.ViewsLabelVisible = true;
102      this.valueViewHost.ViewType = null;
103      //
104      // PortView
105      //
106      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
107      this.Controls.Add(this.valueGroupBox);
108      this.Name = "PortView";
109      this.Size = new System.Drawing.Size(645, 517);
110      this.Controls.SetChildIndex(this.nameLabel, 0);
111      this.Controls.SetChildIndex(this.nameTextBox, 0);
112      this.Controls.SetChildIndex(this.infoLabel, 0);
113      this.Controls.SetChildIndex(this.valueGroupBox, 0);
114      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
115      this.valueGroupBox.ResumeLayout(false);
116      this.valuePanel.ResumeLayout(false);
117      this.ResumeLayout(false);
118      this.PerformLayout();
119
120    }
121
122    #endregion
123
124    protected System.Windows.Forms.GroupBox valueGroupBox;
125    protected System.Windows.Forms.Panel valuePanel;
126    protected MainForm.WindowsForms.ViewHost valueViewHost;
127
128
129
130
131  }
132}
Note: See TracBrowser for help on using the repository browser.