Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionProgramView.Designer.cs @ 9880

Last change on this file since 9880 was 9790, checked in by ascheibe, 11 years ago

#2069

  • added license headers
  • corrected version information
  • fixed formatting
File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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
21
22using System.Windows.Forms;
23using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
24
25namespace HeuristicLab.Problems.Robocode {
26  partial class SolutionProgramView {
27    private Panel panel;
28    private GraphicalSymbolicExpressionTreeView graphTreeView;
29
30    private void InitializeComponent() {
31      this.panel = new System.Windows.Forms.Panel();
32      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
33      this.SuspendLayout();
34      //
35      // nameTextBox
36      //
37      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
38      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
39      //
40      // panel
41      //
42      this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
43            | System.Windows.Forms.AnchorStyles.Left)
44            | System.Windows.Forms.AnchorStyles.Right)));
45      this.panel.Location = new System.Drawing.Point(3, 26);
46      this.panel.Name = "panel";
47      this.panel.Size = new System.Drawing.Size(345, 190);
48      this.panel.TabIndex = 3;
49      //
50      // SolutionProgramView
51      //
52      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
53      this.Controls.Add(this.panel);
54      this.Name = "SolutionProgramView";
55      this.Size = new System.Drawing.Size(351, 219);
56      this.Controls.SetChildIndex(this.panel, 0);
57      this.Controls.SetChildIndex(this.nameLabel, 0);
58      this.Controls.SetChildIndex(this.nameTextBox, 0);
59      this.Controls.SetChildIndex(this.infoLabel, 0);
60      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
61      this.ResumeLayout(false);
62      this.PerformLayout();
63
64    }
65  }
66}
Note: See TracBrowser for help on using the repository browser.