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