[9890] | 1 | namespace HeuristicLab.Problems.Robocode {
|
---|
| 2 | partial class SolutionCodeView {
|
---|
| 3 | /// <summary>
|
---|
| 4 | /// Required designer variable.
|
---|
| 5 | /// </summary>
|
---|
| 6 | private System.ComponentModel.IContainer components = null;
|
---|
[9779] | 7 |
|
---|
[9890] | 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 | }
|
---|
[9779] | 18 |
|
---|
[9890] | 19 | #region Component Designer generated code
|
---|
[9779] | 20 |
|
---|
[9890] | 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();
|
---|
[9985] | 28 | this.btnSave = new System.Windows.Forms.Button();
|
---|
| 29 | this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
---|
[9890] | 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);
|
---|
[9985] | 43 | this.programCode.TabIndex = 0;
|
---|
[9890] | 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);
|
---|
[9985] | 52 | this.btnRunInRobocode.TabIndex = 2;
|
---|
[9890] | 53 | this.btnRunInRobocode.Text = "Run in Robocode";
|
---|
| 54 | this.btnRunInRobocode.UseVisualStyleBackColor = true;
|
---|
| 55 | this.btnRunInRobocode.Click += new System.EventHandler(this.btnRunInRobocode_Click);
|
---|
| 56 | //
|
---|
[9985] | 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 | //
|
---|
[9890] | 74 | // SolutionCodeView
|
---|
| 75 | //
|
---|
| 76 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 77 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[9985] | 78 | this.Controls.Add(this.btnSave);
|
---|
[9890] | 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();
|
---|
[9779] | 85 |
|
---|
[9890] | 86 | }
|
---|
[9779] | 87 |
|
---|
[9890] | 88 | #endregion
|
---|
[9779] | 89 |
|
---|
[9890] | 90 | private System.Windows.Forms.TextBox programCode;
|
---|
| 91 | private System.Windows.Forms.Button btnRunInRobocode;
|
---|
[9985] | 92 | private System.Windows.Forms.Button btnSave;
|
---|
| 93 | private System.Windows.Forms.SaveFileDialog saveFileDialog;
|
---|
[9890] | 94 | }
|
---|
[9779] | 95 | }
|
---|