Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 9985 was 9985, checked in by jkarder, 11 years ago

#2069:

  • fixed deserialization of the RobocodeProblem
  • added a BattleRunnerDialog that allows to configure some arguments of the battle runner
  • added functionality to save a Solution in a java file
File size: 4.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.btnSave = new System.Windows.Forms.Button();
29      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
30      this.SuspendLayout();
31      //
32      // programCode
33      //
34      this.programCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
35            | System.Windows.Forms.AnchorStyles.Left)
36            | System.Windows.Forms.AnchorStyles.Right)));
37      this.programCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
38      this.programCode.Location = new System.Drawing.Point(3, 3);
39      this.programCode.Multiline = true;
40      this.programCode.Name = "programCode";
41      this.programCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
42      this.programCode.Size = new System.Drawing.Size(345, 203);
43      this.programCode.TabIndex = 0;
44      //
45      // btnRunInRobocode
46      //
47      this.btnRunInRobocode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
48      this.btnRunInRobocode.AutoSize = true;
49      this.btnRunInRobocode.Location = new System.Drawing.Point(247, 212);
50      this.btnRunInRobocode.Name = "btnRunInRobocode";
51      this.btnRunInRobocode.Size = new System.Drawing.Size(101, 23);
52      this.btnRunInRobocode.TabIndex = 2;
53      this.btnRunInRobocode.Text = "Run in Robocode";
54      this.btnRunInRobocode.UseVisualStyleBackColor = true;
55      this.btnRunInRobocode.Click += new System.EventHandler(this.btnRunInRobocode_Click);
56      //
57      // btnSave
58      //
59      this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
60      this.btnSave.AutoSize = true;
61      this.btnSave.Location = new System.Drawing.Point(166, 212);
62      this.btnSave.Name = "btnSave";
63      this.btnSave.Size = new System.Drawing.Size(75, 23);
64      this.btnSave.TabIndex = 1;
65      this.btnSave.Text = "Save...";
66      this.btnSave.UseVisualStyleBackColor = true;
67      this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
68      //
69      // saveFileDialog
70      //
71      this.saveFileDialog.DefaultExt = "java";
72      this.saveFileDialog.Filter = "Java |*java";
73      //
74      // SolutionCodeView
75      //
76      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
77      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
78      this.Controls.Add(this.btnSave);
79      this.Controls.Add(this.btnRunInRobocode);
80      this.Controls.Add(this.programCode);
81      this.Name = "SolutionCodeView";
82      this.Size = new System.Drawing.Size(351, 238);
83      this.ResumeLayout(false);
84      this.PerformLayout();
85
86    }
87
88    #endregion
89
90    private System.Windows.Forms.TextBox programCode;
91    private System.Windows.Forms.Button btnRunInRobocode;
92    private System.Windows.Forms.Button btnSave;
93    private System.Windows.Forms.SaveFileDialog saveFileDialog;
94  }
95}
Note: See TracBrowser for help on using the repository browser.