Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/BattleRunnerDialog.Designer.cs @ 13013

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

#2069: reviewing and minor changes

File size: 9.2 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.GeneticProgramming.Views.Robocode {
22  partial class BattleRunnerDialog {
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 Windows Form 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.components = new System.ComponentModel.Container();
47      this.label1 = new System.Windows.Forms.Label();
48      this.robocodePathTextBox = new System.Windows.Forms.TextBox();
49      this.label2 = new System.Windows.Forms.Label();
50      this.nrOfRoundsNumericUpDown = new System.Windows.Forms.NumericUpDown();
51      this.searchButton = new System.Windows.Forms.Button();
52      this.cancelButton = new System.Windows.Forms.Button();
53      this.runInRobocodeButton = new System.Windows.Forms.Button();
54      this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
55      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
56      this.enemyCollectionView = new EnemyCollectionView();
57      ((System.ComponentModel.ISupportInitialize)(this.nrOfRoundsNumericUpDown)).BeginInit();
58      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
59      this.SuspendLayout();
60      //
61      // label1
62      //
63      this.label1.AutoSize = true;
64      this.label1.Location = new System.Drawing.Point(12, 15);
65      this.label1.Name = "label1";
66      this.label1.Size = new System.Drawing.Size(85, 13);
67      this.label1.TabIndex = 0;
68      this.label1.Text = "Robocode Path:";
69      //
70      // robocodePathTextBox
71      //
72      this.robocodePathTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
73            | System.Windows.Forms.AnchorStyles.Right)));
74      this.robocodePathTextBox.Location = new System.Drawing.Point(117, 12);
75      this.robocodePathTextBox.Name = "robocodePathTextBox";
76      this.robocodePathTextBox.Size = new System.Drawing.Size(715, 20);
77      this.robocodePathTextBox.TabIndex = 1;
78      this.robocodePathTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.robocodePathTextBox_Validating);
79      this.robocodePathTextBox.Validated += new System.EventHandler(this.robocodePathTextBox_Validated);
80      //
81      // label2
82      //
83      this.label2.AutoSize = true;
84      this.label2.Location = new System.Drawing.Point(12, 40);
85      this.label2.Name = "label2";
86      this.label2.Size = new System.Drawing.Size(99, 13);
87      this.label2.TabIndex = 2;
88      this.label2.Text = "Number of Rounds:";
89      //
90      // nrOfRoundsNumericUpDown
91      //
92      this.nrOfRoundsNumericUpDown.Location = new System.Drawing.Point(117, 38);
93      this.nrOfRoundsNumericUpDown.Minimum = new decimal(new int[] {
94            1,
95            0,
96            0,
97            0});
98      this.nrOfRoundsNumericUpDown.Name = "nrOfRoundsNumericUpDown";
99      this.nrOfRoundsNumericUpDown.Size = new System.Drawing.Size(73, 20);
100      this.nrOfRoundsNumericUpDown.TabIndex = 3;
101      this.nrOfRoundsNumericUpDown.Value = new decimal(new int[] {
102            1,
103            0,
104            0,
105            0});
106      //
107      // searchButton
108      //
109      this.searchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
110      this.searchButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Zoom;
111      this.searchButton.Location = new System.Drawing.Point(838, 9);
112      this.searchButton.Name = "searchButton";
113      this.searchButton.Size = new System.Drawing.Size(24, 24);
114      this.searchButton.TabIndex = 4;
115      this.searchButton.UseVisualStyleBackColor = true;
116      this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
117      //
118      // cancelButton
119      //
120      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
121      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
122      this.cancelButton.Location = new System.Drawing.Point(787, 567);
123      this.cancelButton.Name = "cancelButton";
124      this.cancelButton.Size = new System.Drawing.Size(75, 23);
125      this.cancelButton.TabIndex = 5;
126      this.cancelButton.Text = "Cancel";
127      this.cancelButton.UseVisualStyleBackColor = true;
128      //
129      // runInRobocodeButton
130      //
131      this.runInRobocodeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
132      this.runInRobocodeButton.Location = new System.Drawing.Point(656, 567);
133      this.runInRobocodeButton.Name = "runInRobocodeButton";
134      this.runInRobocodeButton.Size = new System.Drawing.Size(125, 23);
135      this.runInRobocodeButton.TabIndex = 6;
136      this.runInRobocodeButton.Text = "Run in Robocode";
137      this.runInRobocodeButton.UseVisualStyleBackColor = true;
138      this.runInRobocodeButton.Click += new System.EventHandler(this.runInRobocodeButton_Click);
139      //
140      // folderBrowserDialog
141      //
142      this.folderBrowserDialog.ShowNewFolderButton = false;
143      //
144      // errorProvider
145      //
146      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
147      this.errorProvider.ContainerControl = this;
148      //
149      // enemyCollectionView
150      //
151      this.enemyCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
152            | System.Windows.Forms.AnchorStyles.Left)
153            | System.Windows.Forms.AnchorStyles.Right)));
154      this.enemyCollectionView.Caption = "EnemyCollection View";
155      this.enemyCollectionView.Content = null;
156      this.enemyCollectionView.Location = new System.Drawing.Point(12, 64);
157      this.enemyCollectionView.Name = "enemyCollectionView";
158      this.enemyCollectionView.ReadOnly = false;
159      this.enemyCollectionView.Size = new System.Drawing.Size(850, 497);
160      this.enemyCollectionView.TabIndex = 0;
161      //
162      // BattleRunnerDialog
163      //
164      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
165      this.CancelButton = this.cancelButton;
166      this.ClientSize = new System.Drawing.Size(874, 602);
167      this.Controls.Add(this.runInRobocodeButton);
168      this.Controls.Add(this.cancelButton);
169      this.Controls.Add(this.searchButton);
170      this.Controls.Add(this.enemyCollectionView);
171      this.Controls.Add(this.nrOfRoundsNumericUpDown);
172      this.Controls.Add(this.label2);
173      this.Controls.Add(this.robocodePathTextBox);
174      this.Controls.Add(this.label1);
175      this.Name = "BattleRunnerDialog";
176      this.ShowIcon = false;
177      this.ShowInTaskbar = false;
178      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
179      this.Text = "Run Battle";
180      ((System.ComponentModel.ISupportInitialize)(this.nrOfRoundsNumericUpDown)).EndInit();
181      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
182      this.ResumeLayout(false);
183      this.PerformLayout();
184
185    }
186
187    #endregion
188
189    private System.Windows.Forms.Label label1;
190    private System.Windows.Forms.TextBox robocodePathTextBox;
191    private System.Windows.Forms.Label label2;
192    private System.Windows.Forms.NumericUpDown nrOfRoundsNumericUpDown;
193    private EnemyCollectionView enemyCollectionView;
194    private System.Windows.Forms.Button searchButton;
195    private System.Windows.Forms.Button cancelButton;
196    private System.Windows.Forms.Button runInRobocodeButton;
197    private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
198    private System.Windows.Forms.ErrorProvider errorProvider;
199  }
200}
Note: See TracBrowser for help on using the repository browser.