Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2069 cleaned up views

File size: 2.8 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 HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
23
24namespace HeuristicLab.Problems.Robocode {
25  partial class SolutionProgramView {
26    private void InitializeComponent() {
27      this.graphTreeView = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.GraphicalSymbolicExpressionTreeView();
28      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
29      this.SuspendLayout();
30      //
31      // nameTextBox
32      //
33      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
34      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
35      //
36      // graphTreeView
37      //
38      this.graphTreeView.AllowDrop = true;
39      this.graphTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
40            | System.Windows.Forms.AnchorStyles.Left)
41            | System.Windows.Forms.AnchorStyles.Right)));
42      this.graphTreeView.Caption = "Graphical SymbolicExpressionTree View";
43      this.graphTreeView.Content = null;
44      this.graphTreeView.Location = new System.Drawing.Point(6, 26);
45      this.graphTreeView.Name = "graphTreeView";
46      this.graphTreeView.ReadOnly = false;
47      this.graphTreeView.Size = new System.Drawing.Size(342, 190);
48      this.graphTreeView.TabIndex = 0;
49      //
50      // SolutionProgramView
51      //
52      this.Controls.Add(this.graphTreeView);
53      this.Name = "SolutionProgramView";
54      this.Size = new System.Drawing.Size(351, 219);
55      this.Controls.SetChildIndex(this.nameLabel, 0);
56      this.Controls.SetChildIndex(this.nameTextBox, 0);
57      this.Controls.SetChildIndex(this.infoLabel, 0);
58      this.Controls.SetChildIndex(this.graphTreeView, 0);
59      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
60      this.ResumeLayout(false);
61      this.PerformLayout();
62
63    }
64
65    private GraphicalSymbolicExpressionTreeView graphTreeView;
66  }
67}
Note: See TracBrowser for help on using the repository browser.