Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2069: reviewing and minor changes

File size: 2.2 KB
RevLine 
[9779]1#region License Information
2/* HeuristicLab
[13010]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[9779]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
[13013]24namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode {
[9779]25  partial class SolutionProgramView {
26    private void InitializeComponent() {
[9889]27      this.graphTreeView = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.GraphicalSymbolicExpressionTreeView();
[9779]28      this.SuspendLayout();
29      //
[9889]30      // graphTreeView
[9779]31      //
[9889]32      this.graphTreeView.AllowDrop = true;
[9890]33      this.graphTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
34            | System.Windows.Forms.AnchorStyles.Left)
[9779]35            | System.Windows.Forms.AnchorStyles.Right)));
[9889]36      this.graphTreeView.Caption = "Graphical SymbolicExpressionTree View";
37      this.graphTreeView.Content = null;
[9890]38      this.graphTreeView.Location = new System.Drawing.Point(6, 3);
[9889]39      this.graphTreeView.Name = "graphTreeView";
40      this.graphTreeView.ReadOnly = false;
[9890]41      this.graphTreeView.Size = new System.Drawing.Size(342, 213);
[9889]42      this.graphTreeView.TabIndex = 0;
[9779]43      //
44      // SolutionProgramView
45      //
[9889]46      this.Controls.Add(this.graphTreeView);
[9779]47      this.Name = "SolutionProgramView";
48      this.Size = new System.Drawing.Size(351, 219);
49      this.ResumeLayout(false);
50
51    }
[9889]52
53    private GraphicalSymbolicExpressionTreeView graphTreeView;
[9779]54  }
55}
Note: See TracBrowser for help on using the repository browser.