Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/Symbols/CodeNodeView.Designer.cs @ 11793

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

#2069 fixed object disposed exception in CodeNodeView that occurred when switching the viewhost

File size: 5.4 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          ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
36          this.SuspendLayout();
37          //
38          // nameTextBox
39          //
40          this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
41          this.errorProvider.SetIconPadding(this.nameTextBox, 2);
42          this.nameTextBox.Visible = false;
43          //
44          // nameLabel
45          //
46          this.nameLabel.Visible = false;
47          //
48          // infoLabel
49          //
50          this.infoLabel.Visible = false;
51          //
52          // prefixCode
53          //
54          this.prefixCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
55                      | System.Windows.Forms.AnchorStyles.Right)));
56          this.prefixCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
57          this.prefixCode.Location = new System.Drawing.Point(6, 19);
58          this.prefixCode.Multiline = true;
59          this.prefixCode.Name = "prefixCode";
60          this.prefixCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
61          this.prefixCode.Size = new System.Drawing.Size(333, 93);
62          this.prefixCode.TabIndex = 3;
63          this.prefixCode.Validated += new System.EventHandler(this.prefixCode_Validated);
64          //
65          // prefixLabel
66          //
67          this.prefixLabel.AutoSize = true;
68          this.prefixLabel.Location = new System.Drawing.Point(3, 3);
69          this.prefixLabel.Name = "prefixLabel";
70          this.prefixLabel.Size = new System.Drawing.Size(33, 13);
71          this.prefixLabel.TabIndex = 4;
72          this.prefixLabel.Text = "Prefix";
73          //
74          // suffixLabel
75          //
76          this.suffixLabel.AutoSize = true;
77          this.suffixLabel.Location = new System.Drawing.Point(6, 115);
78          this.suffixLabel.Name = "suffixLabel";
79          this.suffixLabel.Size = new System.Drawing.Size(33, 13);
80          this.suffixLabel.TabIndex = 5;
81          this.suffixLabel.Text = "Suffix";
82          //
83          // suffixCode
84          //
85          this.suffixCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
86                      | System.Windows.Forms.AnchorStyles.Right)));
87          this.suffixCode.Location = new System.Drawing.Point(6, 131);
88          this.suffixCode.Multiline = true;
89          this.suffixCode.Name = "suffixCode";
90          this.suffixCode.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
91          this.suffixCode.Size = new System.Drawing.Size(333, 87);
92          this.suffixCode.TabIndex = 6;
93          this.suffixCode.Validated += new System.EventHandler(this.suffixCode_Validated);
94          //
95          // CodeNodeView
96          //
97          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
98          this.Controls.Add(this.suffixCode);
99          this.Controls.Add(this.suffixLabel);
100          this.Controls.Add(this.prefixLabel);
101          this.Controls.Add(this.prefixCode);
102          this.Name = "CodeNodeView";
103          this.Size = new System.Drawing.Size(351, 238);
104          this.Controls.SetChildIndex(this.nameLabel, 0);
105          this.Controls.SetChildIndex(this.nameTextBox, 0);
106          this.Controls.SetChildIndex(this.infoLabel, 0);
107          this.Controls.SetChildIndex(this.prefixCode, 0);
108          this.Controls.SetChildIndex(this.prefixLabel, 0);
109          this.Controls.SetChildIndex(this.suffixLabel, 0);
110          this.Controls.SetChildIndex(this.suffixCode, 0);
111          ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
112          this.ResumeLayout(false);
113          this.PerformLayout();
114
115        }
116
117        #endregion
118
119        private System.Windows.Forms.TextBox prefixCode;
120        private System.Windows.Forms.Label prefixLabel;
121        private System.Windows.Forms.Label suffixLabel;
122        private System.Windows.Forms.TextBox suffixCode;
123    }
124}
Note: See TracBrowser for help on using the repository browser.