Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13010 was 13010, checked in by gkronber, 9 years ago

#2069 fixed license headers

File size: 4.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21namespace HeuristicLab.Problems.Robocode {
22  partial class SolutionCodeView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.programCode = new System.Windows.Forms.TextBox();
47      this.btnRunInRobocode = new System.Windows.Forms.Button();
48      this.btnSave = new System.Windows.Forms.Button();
49      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
50      this.SuspendLayout();
51      //
52      // programCode
53      //
54      this.programCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
55            | System.Windows.Forms.AnchorStyles.Left)
56            | System.Windows.Forms.AnchorStyles.Right)));
57      this.programCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
58      this.programCode.Location = new System.Drawing.Point(3, 3);
59      this.programCode.Multiline = true;
60      this.programCode.Name = "programCode";
61      this.programCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
62      this.programCode.Size = new System.Drawing.Size(345, 203);
63      this.programCode.TabIndex = 0;
64      //
65      // btnRunInRobocode
66      //
67      this.btnRunInRobocode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
68      this.btnRunInRobocode.AutoSize = true;
69      this.btnRunInRobocode.Location = new System.Drawing.Point(247, 212);
70      this.btnRunInRobocode.Name = "btnRunInRobocode";
71      this.btnRunInRobocode.Size = new System.Drawing.Size(101, 23);
72      this.btnRunInRobocode.TabIndex = 2;
73      this.btnRunInRobocode.Text = "Run in Robocode";
74      this.btnRunInRobocode.UseVisualStyleBackColor = true;
75      this.btnRunInRobocode.Click += new System.EventHandler(this.btnRunInRobocode_Click);
76      //
77      // btnSave
78      //
79      this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
80      this.btnSave.AutoSize = true;
81      this.btnSave.Location = new System.Drawing.Point(166, 212);
82      this.btnSave.Name = "btnSave";
83      this.btnSave.Size = new System.Drawing.Size(75, 23);
84      this.btnSave.TabIndex = 1;
85      this.btnSave.Text = "Save...";
86      this.btnSave.UseVisualStyleBackColor = true;
87      this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
88      //
89      // saveFileDialog
90      //
91      this.saveFileDialog.DefaultExt = "java";
92      this.saveFileDialog.Filter = "Java |*java";
93      //
94      // SolutionCodeView
95      //
96      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
97      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
98      this.Controls.Add(this.btnSave);
99      this.Controls.Add(this.btnRunInRobocode);
100      this.Controls.Add(this.programCode);
101      this.Name = "SolutionCodeView";
102      this.Size = new System.Drawing.Size(351, 238);
103      this.ResumeLayout(false);
104      this.PerformLayout();
105
106    }
107
108    #endregion
109
110    private System.Windows.Forms.TextBox programCode;
111    private System.Windows.Forms.Button btnRunInRobocode;
112    private System.Windows.Forms.Button btnSave;
113    private System.Windows.Forms.SaveFileDialog saveFileDialog;
114  }
115}
Note: See TracBrowser for help on using the repository browser.