Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/ScopeView.Designer.cs @ 2792

Last change on this file since 2792 was 2790, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 6.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22namespace HeuristicLab.Core.Views {
23  partial class ScopeView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing) {
35        if (scopesTreeView.Nodes.Count > 0) {
36          RemoveTreeNode(scopesTreeView.Nodes[0]);
37          scopesTreeView.Nodes.Clear();
38        }
39        if (components != null) components.Dispose();
40      }
41      base.Dispose(disposing);
42    }
43
44    #region Component Designer generated code
45
46    /// <summary>
47    /// Required method for Designer support - do not modify
48    /// the contents of this method with the code editor.
49    /// </summary>
50    private void InitializeComponent() {
51      this.scopesTreeView = new System.Windows.Forms.TreeView();
52      this.splitContainer = new System.Windows.Forms.SplitContainer();
53      this.scopesGroupBox = new System.Windows.Forms.GroupBox();
54      this.variableCollectionView = new HeuristicLab.Core.Views.VariableCollectionView();
55      this.splitContainer.Panel1.SuspendLayout();
56      this.splitContainer.Panel2.SuspendLayout();
57      this.splitContainer.SuspendLayout();
58      this.scopesGroupBox.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // scopesTreeView
62      //
63      this.scopesTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
64                  | System.Windows.Forms.AnchorStyles.Left)
65                  | System.Windows.Forms.AnchorStyles.Right)));
66      this.scopesTreeView.HideSelection = false;
67      this.scopesTreeView.Location = new System.Drawing.Point(6, 19);
68      this.scopesTreeView.Name = "scopesTreeView";
69      this.scopesTreeView.ShowNodeToolTips = true;
70      this.scopesTreeView.Size = new System.Drawing.Size(382, 169);
71      this.scopesTreeView.TabIndex = 0;
72      this.scopesTreeView.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.scopesTreeView_AfterCollapse);
73      this.scopesTreeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.scopesTreeView_BeforeExpand);
74      this.scopesTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.scopesTreeView_MouseDown);
75      this.scopesTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.scopesTreeView_ItemDrag);
76      //
77      // splitContainer
78      //
79      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
80      this.splitContainer.Location = new System.Drawing.Point(0, 0);
81      this.splitContainer.Name = "splitContainer";
82      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
83      //
84      // splitContainer.Panel1
85      //
86      this.splitContainer.Panel1.Controls.Add(this.scopesGroupBox);
87      //
88      // splitContainer.Panel2
89      //
90      this.splitContainer.Panel2.Controls.Add(this.variableCollectionView);
91      this.splitContainer.Size = new System.Drawing.Size(400, 400);
92      this.splitContainer.SplitterDistance = 200;
93      this.splitContainer.TabIndex = 1;
94      //
95      // scopesGroupBox
96      //
97      this.scopesGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
98                  | System.Windows.Forms.AnchorStyles.Left)
99                  | System.Windows.Forms.AnchorStyles.Right)));
100      this.scopesGroupBox.Controls.Add(this.scopesTreeView);
101      this.scopesGroupBox.Location = new System.Drawing.Point(3, 3);
102      this.scopesGroupBox.Name = "scopesGroupBox";
103      this.scopesGroupBox.Size = new System.Drawing.Size(394, 194);
104      this.scopesGroupBox.TabIndex = 0;
105      this.scopesGroupBox.TabStop = false;
106      this.scopesGroupBox.Text = "&Scopes";
107      //
108      // variableCollectionView
109      //
110      this.variableCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
111                  | System.Windows.Forms.AnchorStyles.Left)
112                  | System.Windows.Forms.AnchorStyles.Right)));
113      this.variableCollectionView.Caption = "VariableCollection";
114      this.variableCollectionView.Location = new System.Drawing.Point(3, 3);
115      this.variableCollectionView.Name = "variableCollectionView";
116      this.variableCollectionView.Size = new System.Drawing.Size(394, 190);
117      this.variableCollectionView.TabIndex = 0;
118      //
119      // ScopeView
120      //
121      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
122      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
123      this.Controls.Add(this.splitContainer);
124      this.Name = "ScopeView";
125      this.Size = new System.Drawing.Size(400, 400);
126      this.splitContainer.Panel1.ResumeLayout(false);
127      this.splitContainer.Panel2.ResumeLayout(false);
128      this.splitContainer.ResumeLayout(false);
129      this.scopesGroupBox.ResumeLayout(false);
130      this.ResumeLayout(false);
131
132    }
133
134    #endregion
135
136    private System.Windows.Forms.TreeView scopesTreeView;
137    private System.Windows.Forms.SplitContainer splitContainer;
138    private System.Windows.Forms.GroupBox scopesGroupBox;
139    private VariableCollectionView variableCollectionView;
140  }
141}
Note: See TracBrowser for help on using the repository browser.