Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/SolutionCodeView.Designer.cs @ 9565

Last change on this file since 9565 was 9565, checked in by melkaref, 11 years ago

Robocode Plugin code without Mutation Operators

File size: 3.9 KB
Line 
1namespace HeuristicLab.Problems.Robocode
2{
3    partial class SolutionCodeView
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.programCode = new System.Windows.Forms.TextBox();
32            this.btnRunInRobocode = new System.Windows.Forms.Button();
33            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
34            this.SuspendLayout();
35            //
36            // nameTextBox
37            //
38            this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
39            this.errorProvider.SetIconPadding(this.nameTextBox, 2);
40            //
41            // programCode
42            //
43            this.programCode.Dock = System.Windows.Forms.DockStyle.Fill;
44            this.programCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
45            this.programCode.Location = new System.Drawing.Point(0, 0);
46            this.programCode.Multiline = true;
47            this.programCode.Name = "programCode";
48            this.programCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
49            this.programCode.Size = new System.Drawing.Size(351, 238);
50            this.programCode.TabIndex = 3;
51            //
52            // btnRunInRobocode
53            //
54            this.btnRunInRobocode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
55            this.btnRunInRobocode.AutoSize = true;
56            this.btnRunInRobocode.Location = new System.Drawing.Point(228, 3);
57            this.btnRunInRobocode.Name = "btnRunInRobocode";
58            this.btnRunInRobocode.Size = new System.Drawing.Size(98, 23);
59            this.btnRunInRobocode.TabIndex = 4;
60            this.btnRunInRobocode.Text = "Run in Robocode";
61            this.btnRunInRobocode.UseVisualStyleBackColor = true;
62            this.btnRunInRobocode.Click += new System.EventHandler(this.btnRunInRobocode_Click);
63            //
64            // SolutionCodeView
65            //
66            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
67            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
68            this.Controls.Add(this.btnRunInRobocode);
69            this.Controls.Add(this.programCode);
70            this.Name = "SolutionCodeView";
71            this.Size = new System.Drawing.Size(351, 238);
72            this.Controls.SetChildIndex(this.nameLabel, 0);
73            this.Controls.SetChildIndex(this.nameTextBox, 0);
74            this.Controls.SetChildIndex(this.infoLabel, 0);
75            this.Controls.SetChildIndex(this.programCode, 0);
76            this.Controls.SetChildIndex(this.btnRunInRobocode, 0);
77            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
78            this.ResumeLayout(false);
79            this.PerformLayout();
80
81        }
82
83        #endregion
84
85        private System.Windows.Forms.TextBox programCode;
86        private System.Windows.Forms.Button btnRunInRobocode;
87    }
88}
Note: See TracBrowser for help on using the repository browser.