Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/CodeNodeView.Designer.cs @ 9889

Last change on this file since 9889 was 9889, checked in by ascheibe, 11 years ago

#2069 cleaned up views

File size: 6.7 KB
Line 
1namespace HeuristicLab.Problems.Robocode
2{
3    partial class CodeNodeView
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Component Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31      this.prefixCode = new System.Windows.Forms.TextBox();
32      this.prefixLabel = new System.Windows.Forms.Label();
33      this.suffixLabel = new System.Windows.Forms.Label();
34      this.suffixCode = new System.Windows.Forms.TextBox();
35      this.splitContainer = new System.Windows.Forms.SplitContainer();
36      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
37      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
38      this.splitContainer.Panel1.SuspendLayout();
39      this.splitContainer.Panel2.SuspendLayout();
40      this.splitContainer.SuspendLayout();
41      this.SuspendLayout();
42      //
43      // nameTextBox
44      //
45      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
46      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
47      this.nameTextBox.Size = new System.Drawing.Size(508, 20);
48      this.nameTextBox.Visible = false;
49      //
50      // nameLabel
51      //
52      this.nameLabel.Visible = false;
53      //
54      // infoLabel
55      //
56      this.infoLabel.Location = new System.Drawing.Point(572, 3);
57      this.infoLabel.Visible = false;
58      //
59      // prefixCode
60      //
61      this.prefixCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
62            | System.Windows.Forms.AnchorStyles.Left)
63            | System.Windows.Forms.AnchorStyles.Right)));
64      this.prefixCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
65      this.prefixCode.Location = new System.Drawing.Point(6, 16);
66      this.prefixCode.Multiline = true;
67      this.prefixCode.Name = "prefixCode";
68      this.prefixCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
69      this.prefixCode.Size = new System.Drawing.Size(573, 100);
70      this.prefixCode.TabIndex = 3;
71      this.prefixCode.Validated += new System.EventHandler(this.prefixCode_Validated);
72      //
73      // prefixLabel
74      //
75      this.prefixLabel.AutoSize = true;
76      this.prefixLabel.Location = new System.Drawing.Point(3, 0);
77      this.prefixLabel.Name = "prefixLabel";
78      this.prefixLabel.Size = new System.Drawing.Size(33, 13);
79      this.prefixLabel.TabIndex = 4;
80      this.prefixLabel.Text = "Prefix";
81      //
82      // suffixLabel
83      //
84      this.suffixLabel.AutoSize = true;
85      this.suffixLabel.Location = new System.Drawing.Point(3, 0);
86      this.suffixLabel.Name = "suffixLabel";
87      this.suffixLabel.Size = new System.Drawing.Size(33, 13);
88      this.suffixLabel.TabIndex = 5;
89      this.suffixLabel.Text = "Suffix";
90      //
91      // suffixCode
92      //
93      this.suffixCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94            | System.Windows.Forms.AnchorStyles.Left)
95            | System.Windows.Forms.AnchorStyles.Right)));
96      this.suffixCode.Location = new System.Drawing.Point(6, 16);
97      this.suffixCode.Multiline = true;
98      this.suffixCode.Name = "suffixCode";
99      this.suffixCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
100      this.suffixCode.Size = new System.Drawing.Size(573, 96);
101      this.suffixCode.TabIndex = 6;
102      this.suffixCode.Validated += new System.EventHandler(this.suffixCode_Validated);
103      //
104      // splitContainer
105      //
106      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
107            | System.Windows.Forms.AnchorStyles.Left)
108            | System.Windows.Forms.AnchorStyles.Right)));
109      this.splitContainer.Location = new System.Drawing.Point(6, 26);
110      this.splitContainer.Name = "splitContainer";
111      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
112      //
113      // splitContainer.Panel1
114      //
115      this.splitContainer.Panel1.Controls.Add(this.prefixLabel);
116      this.splitContainer.Panel1.Controls.Add(this.prefixCode);
117      //
118      // splitContainer.Panel2
119      //
120      this.splitContainer.Panel2.Controls.Add(this.suffixLabel);
121      this.splitContainer.Panel2.Controls.Add(this.suffixCode);
122      this.splitContainer.Size = new System.Drawing.Size(582, 238);
123      this.splitContainer.SplitterDistance = 119;
124      this.splitContainer.TabIndex = 7;
125      //
126      // CodeNodeView
127      //
128      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
129      this.Controls.Add(this.splitContainer);
130      this.Name = "CodeNodeView";
131      this.Size = new System.Drawing.Size(591, 267);
132      this.Controls.SetChildIndex(this.nameLabel, 0);
133      this.Controls.SetChildIndex(this.nameTextBox, 0);
134      this.Controls.SetChildIndex(this.infoLabel, 0);
135      this.Controls.SetChildIndex(this.splitContainer, 0);
136      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
137      this.splitContainer.Panel1.ResumeLayout(false);
138      this.splitContainer.Panel1.PerformLayout();
139      this.splitContainer.Panel2.ResumeLayout(false);
140      this.splitContainer.Panel2.PerformLayout();
141      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
142      this.splitContainer.ResumeLayout(false);
143      this.ResumeLayout(false);
144      this.PerformLayout();
145
146        }
147
148        #endregion
149
150        private System.Windows.Forms.TextBox prefixCode;
151        private System.Windows.Forms.Label prefixLabel;
152        private System.Windows.Forms.Label suffixLabel;
153        private System.Windows.Forms.TextBox suffixCode;
154        private System.Windows.Forms.SplitContainer splitContainer;
155    }
156}
Note: See TracBrowser for help on using the repository browser.