Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2069

  • changed Solution from NamedItem to Item
  • adapted views to be only ItemViews
  • some more minor improvements
File size: 2.2 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      this.SuspendLayout();
29      //
30      // graphTreeView
31      //
32      this.graphTreeView.AllowDrop = true;
33      this.graphTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
34            | System.Windows.Forms.AnchorStyles.Left)
35            | System.Windows.Forms.AnchorStyles.Right)));
36      this.graphTreeView.Caption = "Graphical SymbolicExpressionTree View";
37      this.graphTreeView.Content = null;
38      this.graphTreeView.Location = new System.Drawing.Point(6, 3);
39      this.graphTreeView.Name = "graphTreeView";
40      this.graphTreeView.ReadOnly = false;
41      this.graphTreeView.Size = new System.Drawing.Size(342, 213);
42      this.graphTreeView.TabIndex = 0;
43      //
44      // SolutionProgramView
45      //
46      this.Controls.Add(this.graphTreeView);
47      this.Name = "SolutionProgramView";
48      this.Size = new System.Drawing.Size(351, 219);
49      this.ResumeLayout(false);
50
51    }
52
53    private GraphicalSymbolicExpressionTreeView graphTreeView;
54  }
55}
Note: See TracBrowser for help on using the repository browser.