Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Core.Views/3.3/Networks/MessagePortView.Designer.cs @ 11577

Last change on this file since 11577 was 11577, checked in by swagner, 9 years ago

#2205: Restructured solution and projects and switched all projects to .NET 4.5

File size: 12.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.Core.Networks.Views {
23  partial class MessagePortView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    #region Component Designer generated code
30
31    /// <summary>
32    /// Required method for Designer support - do not modify
33    /// the contents of this method with the code editor.
34    /// </summary>
35    private void InitializeComponent() {
36      this.connectedPortGroupBox = new System.Windows.Forms.GroupBox();
37      this.setConnectedPortButton = new System.Windows.Forms.Button();
38      this.clearConnectedPortButton = new System.Windows.Forms.Button();
39      this.connectedPortView = new HeuristicLab.Core.Networks.Views.PortView();
40      this.cloneParametersFromPortButton = new System.Windows.Forms.Button();
41      this.sendMessageButton = new System.Windows.Forms.Button();
42      this.splitContainer = new System.Windows.Forms.SplitContainer();
43      this.portParameterCollectionView = new HeuristicLab.Core.Networks.Views.PortParameterCollectionView();
44      this.lastMessageGroupBox = new System.Windows.Forms.GroupBox();
45      this.lastMessageView = new HeuristicLab.Core.Networks.Views.MessageView();
46      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
47      this.connectedPortGroupBox.SuspendLayout();
48      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
49      this.splitContainer.Panel1.SuspendLayout();
50      this.splitContainer.Panel2.SuspendLayout();
51      this.splitContainer.SuspendLayout();
52      this.lastMessageGroupBox.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(47, 0);
60      this.nameTextBox.Size = new System.Drawing.Size(573, 20);
61      //
62      // connectedPortGroupBox
63      //
64      this.connectedPortGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
65            | System.Windows.Forms.AnchorStyles.Right)));
66      this.connectedPortGroupBox.Controls.Add(this.setConnectedPortButton);
67      this.connectedPortGroupBox.Controls.Add(this.clearConnectedPortButton);
68      this.connectedPortGroupBox.Controls.Add(this.connectedPortView);
69      this.connectedPortGroupBox.Location = new System.Drawing.Point(47, 26);
70      this.connectedPortGroupBox.Name = "connectedPortGroupBox";
71      this.connectedPortGroupBox.Size = new System.Drawing.Size(598, 50);
72      this.connectedPortGroupBox.TabIndex = 4;
73      this.connectedPortGroupBox.TabStop = false;
74      this.connectedPortGroupBox.Text = "&Connected Port";
75      //
76      // setConnectedPortButton
77      //
78      this.setConnectedPortButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
79      this.setConnectedPortButton.Location = new System.Drawing.Point(6, 19);
80      this.setConnectedPortButton.Name = "setConnectedPortButton";
81      this.setConnectedPortButton.Size = new System.Drawing.Size(24, 24);
82      this.setConnectedPortButton.TabIndex = 0;
83      this.toolTip.SetToolTip(this.setConnectedPortButton, "Set Connected Port");
84      this.setConnectedPortButton.UseVisualStyleBackColor = true;
85      this.setConnectedPortButton.Click += new System.EventHandler(this.setConnectedPortButton_Click);
86      //
87      // clearConnectedPortButton
88      //
89      this.clearConnectedPortButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
90      this.clearConnectedPortButton.Location = new System.Drawing.Point(36, 19);
91      this.clearConnectedPortButton.Name = "clearConnectedPortButton";
92      this.clearConnectedPortButton.Size = new System.Drawing.Size(24, 24);
93      this.clearConnectedPortButton.TabIndex = 1;
94      this.toolTip.SetToolTip(this.clearConnectedPortButton, "Remove Connected Port");
95      this.clearConnectedPortButton.UseVisualStyleBackColor = true;
96      this.clearConnectedPortButton.Click += new System.EventHandler(this.clearConnectedPortButton_Click);
97      //
98      // connectedPortView
99      //
100      this.connectedPortView.AllowDrop = true;
101      this.connectedPortView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
102            | System.Windows.Forms.AnchorStyles.Left)
103            | System.Windows.Forms.AnchorStyles.Right)));
104      this.connectedPortView.Caption = "Connected Port View";
105      this.connectedPortView.Content = null;
106      this.connectedPortView.Location = new System.Drawing.Point(66, 21);
107      this.connectedPortView.Name = "connectedPortView";
108      this.connectedPortView.ReadOnly = true;
109      this.connectedPortView.Size = new System.Drawing.Size(507, 23);
110      this.connectedPortView.TabIndex = 2;
111      this.connectedPortView.DragDrop += new System.Windows.Forms.DragEventHandler(this.connectedPortView_DragDrop);
112      this.connectedPortView.DragEnter += new System.Windows.Forms.DragEventHandler(this.connectedPortView_DragEnterOver);
113      this.connectedPortView.DragOver += new System.Windows.Forms.DragEventHandler(this.connectedPortView_DragEnterOver);
114      //
115      // cloneParametersFromPortButton
116      //
117      this.cloneParametersFromPortButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Clone;
118      this.cloneParametersFromPortButton.Location = new System.Drawing.Point(156, 101);
119      this.cloneParametersFromPortButton.Name = "cloneParametersFromPortButton";
120      this.cloneParametersFromPortButton.Size = new System.Drawing.Size(24, 24);
121      this.cloneParametersFromPortButton.TabIndex = 5;
122      this.toolTip.SetToolTip(this.cloneParametersFromPortButton, "Clone parameters from another port");
123      this.cloneParametersFromPortButton.UseVisualStyleBackColor = true;
124      this.cloneParametersFromPortButton.Click += new System.EventHandler(this.cloneParametersFromPortButton_Click);
125      //
126      // sendMessageButton
127      //
128      this.sendMessageButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Exception;
129      this.sendMessageButton.Location = new System.Drawing.Point(6, 45);
130      this.sendMessageButton.Name = "sendMessageButton";
131      this.sendMessageButton.Size = new System.Drawing.Size(24, 24);
132      this.sendMessageButton.TabIndex = 3;
133      this.toolTip.SetToolTip(this.sendMessageButton, "Send Message");
134      this.sendMessageButton.UseVisualStyleBackColor = true;
135      this.sendMessageButton.Click += new System.EventHandler(this.sendMessageButton_Click);
136      //
137      // splitContainer
138      //
139      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
140            | System.Windows.Forms.AnchorStyles.Left)
141            | System.Windows.Forms.AnchorStyles.Right)));
142      this.splitContainer.Location = new System.Drawing.Point(0, 82);
143      this.splitContainer.Name = "splitContainer";
144      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
145      //
146      // splitContainer.Panel1
147      //
148      this.splitContainer.Panel1.Controls.Add(this.portParameterCollectionView);
149      //
150      // splitContainer.Panel2
151      //
152      this.splitContainer.Panel2.Controls.Add(this.lastMessageGroupBox);
153      this.splitContainer.Size = new System.Drawing.Size(645, 435);
154      this.splitContainer.SplitterDistance = 218;
155      this.splitContainer.TabIndex = 7;
156      //
157      // portParameterCollectionView
158      //
159      this.portParameterCollectionView.Caption = "PortParameterCollection View";
160      this.portParameterCollectionView.Content = null;
161      this.portParameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
162      this.portParameterCollectionView.Location = new System.Drawing.Point(0, 0);
163      this.portParameterCollectionView.Name = "portParameterCollectionView";
164      this.portParameterCollectionView.ReadOnly = false;
165      this.portParameterCollectionView.ShowDetails = true;
166      this.portParameterCollectionView.Size = new System.Drawing.Size(645, 218);
167      this.portParameterCollectionView.TabIndex = 0;
168      //
169      // lastMessageGroupBox
170      //
171      this.lastMessageGroupBox.Controls.Add(this.lastMessageView);
172      this.lastMessageGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
173      this.lastMessageGroupBox.Location = new System.Drawing.Point(0, 0);
174      this.lastMessageGroupBox.Name = "lastMessageGroupBox";
175      this.lastMessageGroupBox.Size = new System.Drawing.Size(645, 213);
176      this.lastMessageGroupBox.TabIndex = 0;
177      this.lastMessageGroupBox.TabStop = false;
178      this.lastMessageGroupBox.Text = "Last Message";
179      //
180      // lastMessageView
181      //
182      this.lastMessageView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
183            | System.Windows.Forms.AnchorStyles.Left)
184            | System.Windows.Forms.AnchorStyles.Right)));
185      this.lastMessageView.Caption = "Message View";
186      this.lastMessageView.Content = null;
187      this.lastMessageView.Location = new System.Drawing.Point(6, 19);
188      this.lastMessageView.Name = "lastMessageView";
189      this.lastMessageView.ReadOnly = true;
190      this.lastMessageView.Size = new System.Drawing.Size(633, 188);
191      this.lastMessageView.TabIndex = 0;
192      //
193      // MessagePortView
194      //
195      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
196      this.Controls.Add(this.sendMessageButton);
197      this.Controls.Add(this.cloneParametersFromPortButton);
198      this.Controls.Add(this.connectedPortGroupBox);
199      this.Controls.Add(this.splitContainer);
200      this.Name = "MessagePortView";
201      this.Controls.SetChildIndex(this.splitContainer, 0);
202      this.Controls.SetChildIndex(this.nameLabel, 0);
203      this.Controls.SetChildIndex(this.nameTextBox, 0);
204      this.Controls.SetChildIndex(this.infoLabel, 0);
205      this.Controls.SetChildIndex(this.connectedPortGroupBox, 0);
206      this.Controls.SetChildIndex(this.cloneParametersFromPortButton, 0);
207      this.Controls.SetChildIndex(this.sendMessageButton, 0);
208      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
209      this.connectedPortGroupBox.ResumeLayout(false);
210      this.splitContainer.Panel1.ResumeLayout(false);
211      this.splitContainer.Panel2.ResumeLayout(false);
212      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
213      this.splitContainer.ResumeLayout(false);
214      this.lastMessageGroupBox.ResumeLayout(false);
215      this.ResumeLayout(false);
216      this.PerformLayout();
217
218    }
219
220    #endregion
221
222    protected System.Windows.Forms.GroupBox connectedPortGroupBox;
223    protected PortView connectedPortView;
224    protected System.Windows.Forms.Button clearConnectedPortButton;
225    protected System.Windows.Forms.Button setConnectedPortButton;
226    protected System.Windows.Forms.Button cloneParametersFromPortButton;
227    protected System.Windows.Forms.Button sendMessageButton;
228    protected System.Windows.Forms.SplitContainer splitContainer;
229    protected PortParameterCollectionView portParameterCollectionView;
230    protected System.Windows.Forms.GroupBox lastMessageGroupBox;
231    protected MessageView lastMessageView;
232
233
234
235
236
237  }
238}
Note: See TracBrowser for help on using the repository browser.