Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionCodeView.Designer.cs @ 9890

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

#2069

  • changed Solution from NamedItem to Item
  • adapted views to be only ItemViews
  • some more minor improvements
File size: 3.0 KB
Line 
1namespace HeuristicLab.Problems.Robocode {
2  partial class SolutionCodeView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.programCode = new System.Windows.Forms.TextBox();
27      this.btnRunInRobocode = new System.Windows.Forms.Button();
28      this.SuspendLayout();
29      //
30      // programCode
31      //
32      this.programCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
33            | System.Windows.Forms.AnchorStyles.Left)
34            | System.Windows.Forms.AnchorStyles.Right)));
35      this.programCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
36      this.programCode.Location = new System.Drawing.Point(3, 3);
37      this.programCode.Multiline = true;
38      this.programCode.Name = "programCode";
39      this.programCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
40      this.programCode.Size = new System.Drawing.Size(345, 203);
41      this.programCode.TabIndex = 3;
42      //
43      // btnRunInRobocode
44      //
45      this.btnRunInRobocode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
46      this.btnRunInRobocode.AutoSize = true;
47      this.btnRunInRobocode.Location = new System.Drawing.Point(247, 212);
48      this.btnRunInRobocode.Name = "btnRunInRobocode";
49      this.btnRunInRobocode.Size = new System.Drawing.Size(101, 23);
50      this.btnRunInRobocode.TabIndex = 4;
51      this.btnRunInRobocode.Text = "Run in Robocode";
52      this.btnRunInRobocode.UseVisualStyleBackColor = true;
53      this.btnRunInRobocode.Click += new System.EventHandler(this.btnRunInRobocode_Click);
54      //
55      // SolutionCodeView
56      //
57      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
58      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
59      this.Controls.Add(this.btnRunInRobocode);
60      this.Controls.Add(this.programCode);
61      this.Name = "SolutionCodeView";
62      this.Size = new System.Drawing.Size(351, 238);
63      this.ResumeLayout(false);
64      this.PerformLayout();
65
66    }
67
68    #endregion
69
70    private System.Windows.Forms.TextBox programCode;
71    private System.Windows.Forms.Button btnRunInRobocode;
72  }
73}
Note: See TracBrowser for help on using the repository browser.