Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Core/MessageValueView.Designer.cs @ 12232

Last change on this file since 12232 was 12232, checked in by abeham, 9 years ago

#2205:

  • changed branch to build to trunk
  • Reintegrated distributed additions to Core, Operators, etc. into Networks plugin
File size: 5.7 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 MessageValueView {
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      this.dataTypeLabel = new System.Windows.Forms.Label();
51      this.dataTypeTextBox = new System.Windows.Forms.TextBox();
52      this.valueGroupBox.SuspendLayout();
53      this.valuePanel.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // valueGroupBox
57      //
58      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59            | System.Windows.Forms.AnchorStyles.Left)
60            | System.Windows.Forms.AnchorStyles.Right)));
61      this.valueGroupBox.Controls.Add(this.valuePanel);
62      this.valueGroupBox.Location = new System.Drawing.Point(0, 26);
63      this.valueGroupBox.Name = "valueGroupBox";
64      this.valueGroupBox.Size = new System.Drawing.Size(482, 271);
65      this.valueGroupBox.TabIndex = 2;
66      this.valueGroupBox.TabStop = false;
67      this.valueGroupBox.Text = "Value";
68      //
69      // valuePanel
70      //
71      this.valuePanel.AllowDrop = true;
72      this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
73            | System.Windows.Forms.AnchorStyles.Left)
74            | System.Windows.Forms.AnchorStyles.Right)));
75      this.valuePanel.Controls.Add(this.valueViewHost);
76      this.valuePanel.Location = new System.Drawing.Point(6, 19);
77      this.valuePanel.Name = "valuePanel";
78      this.valuePanel.Size = new System.Drawing.Size(470, 246);
79      this.valuePanel.TabIndex = 0;
80      //
81      // valueViewHost
82      //
83      this.valueViewHost.Caption = "View";
84      this.valueViewHost.Content = null;
85      this.valueViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.valueViewHost.Enabled = false;
87      this.valueViewHost.Location = new System.Drawing.Point(0, 0);
88      this.valueViewHost.Name = "valueViewHost";
89      this.valueViewHost.ReadOnly = false;
90      this.valueViewHost.Size = new System.Drawing.Size(470, 246);
91      this.valueViewHost.TabIndex = 0;
92      this.valueViewHost.ViewsLabelVisible = true;
93      this.valueViewHost.ViewType = null;
94      //
95      // dataTypeLabel
96      //
97      this.dataTypeLabel.AutoSize = true;
98      this.dataTypeLabel.Location = new System.Drawing.Point(3, 3);
99      this.dataTypeLabel.Name = "dataTypeLabel";
100      this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
101      this.dataTypeLabel.TabIndex = 0;
102      this.dataTypeLabel.Text = "&Data Type:";
103      //
104      // dataTypeTextBox
105      //
106      this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
107            | System.Windows.Forms.AnchorStyles.Right)));
108      this.dataTypeTextBox.Location = new System.Drawing.Point(69, 0);
109      this.dataTypeTextBox.Name = "dataTypeTextBox";
110      this.dataTypeTextBox.ReadOnly = true;
111      this.dataTypeTextBox.Size = new System.Drawing.Size(413, 20);
112      this.dataTypeTextBox.TabIndex = 1;
113      //
114      // MessageValueView
115      //
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
117      this.Controls.Add(this.dataTypeTextBox);
118      this.Controls.Add(this.dataTypeLabel);
119      this.Controls.Add(this.valueGroupBox);
120      this.Name = "MessageValueView";
121      this.Size = new System.Drawing.Size(482, 297);
122      this.valueGroupBox.ResumeLayout(false);
123      this.valuePanel.ResumeLayout(false);
124      this.ResumeLayout(false);
125      this.PerformLayout();
126
127    }
128
129    #endregion
130
131    protected System.Windows.Forms.GroupBox valueGroupBox;
132    protected System.Windows.Forms.Panel valuePanel;
133    protected MainForm.WindowsForms.ViewHost valueViewHost;
134    protected System.Windows.Forms.Label dataTypeLabel;
135    protected System.Windows.Forms.TextBox dataTypeTextBox;
136
137
138
139
140  }
141}
Note: See TracBrowser for help on using the repository browser.