Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelector.Designer.cs @ 2797

Last change on this file since 2797 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.6 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 TypeSelector {
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 (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.typesTreeView = new System.Windows.Forms.TreeView();
49      this.imageList = new System.Windows.Forms.ImageList(this.components);
50      this.typesGroupBox = new System.Windows.Forms.GroupBox();
51      this.splitContainer = new System.Windows.Forms.SplitContainer();
52      this.descriptionTextBox = new System.Windows.Forms.TextBox();
53      this.typesGroupBox.SuspendLayout();
54      this.splitContainer.Panel1.SuspendLayout();
55      this.splitContainer.Panel2.SuspendLayout();
56      this.splitContainer.SuspendLayout();
57      this.SuspendLayout();
58      //
59      // typesTreeView
60      //
61      this.typesTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
62                  | System.Windows.Forms.AnchorStyles.Left)
63                  | System.Windows.Forms.AnchorStyles.Right)));
64      this.typesTreeView.HideSelection = false;
65      this.typesTreeView.ImageIndex = 0;
66      this.typesTreeView.ImageList = this.imageList;
67      this.typesTreeView.Location = new System.Drawing.Point(3, 3);
68      this.typesTreeView.Name = "typesTreeView";
69      this.typesTreeView.SelectedImageIndex = 0;
70      this.typesTreeView.ShowNodeToolTips = true;
71      this.typesTreeView.Size = new System.Drawing.Size(291, 192);
72      this.typesTreeView.TabIndex = 0;
73      this.typesTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.typesTreeView_AfterSelect);
74      this.typesTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.typesTreeView_ItemDrag);
75      //
76      // imageList
77      //
78      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
79      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
80      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
81      //
82      // typesGroupBox
83      //
84      this.typesGroupBox.Controls.Add(this.splitContainer);
85      this.typesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.typesGroupBox.Location = new System.Drawing.Point(0, 0);
87      this.typesGroupBox.Name = "typesGroupBox";
88      this.typesGroupBox.Size = new System.Drawing.Size(303, 306);
89      this.typesGroupBox.TabIndex = 0;
90      this.typesGroupBox.TabStop = false;
91      this.typesGroupBox.Text = "&Available Types";
92      //
93      // splitContainer
94      //
95      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
96      this.splitContainer.Location = new System.Drawing.Point(3, 16);
97      this.splitContainer.Name = "splitContainer";
98      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
99      //
100      // splitContainer.Panel1
101      //
102      this.splitContainer.Panel1.Controls.Add(this.typesTreeView);
103      //
104      // splitContainer.Panel2
105      //
106      this.splitContainer.Panel2.Controls.Add(this.descriptionTextBox);
107      this.splitContainer.Size = new System.Drawing.Size(297, 287);
108      this.splitContainer.SplitterDistance = 198;
109      this.splitContainer.TabIndex = 2;
110      //
111      // descriptionTextBox
112      //
113      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
114                  | System.Windows.Forms.AnchorStyles.Left)
115                  | System.Windows.Forms.AnchorStyles.Right)));
116      this.descriptionTextBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
117      this.descriptionTextBox.Location = new System.Drawing.Point(3, 3);
118      this.descriptionTextBox.Multiline = true;
119      this.descriptionTextBox.Name = "descriptionTextBox";
120      this.descriptionTextBox.ReadOnly = true;
121      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
122      this.descriptionTextBox.Size = new System.Drawing.Size(291, 79);
123      this.descriptionTextBox.TabIndex = 0;
124      //
125      // TypeSelector
126      //
127      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
128      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
129      this.Controls.Add(this.typesGroupBox);
130      this.Name = "TypeSelector";
131      this.Size = new System.Drawing.Size(303, 306);
132      this.typesGroupBox.ResumeLayout(false);
133      this.splitContainer.Panel1.ResumeLayout(false);
134      this.splitContainer.Panel2.ResumeLayout(false);
135      this.splitContainer.Panel2.PerformLayout();
136      this.splitContainer.ResumeLayout(false);
137      this.ResumeLayout(false);
138
139    }
140
141    #endregion
142
143    protected System.Windows.Forms.GroupBox typesGroupBox;
144    protected System.Windows.Forms.TextBox descriptionTextBox;
145    protected System.Windows.Forms.ImageList imageList;
146    protected System.Windows.Forms.TreeView typesTreeView;
147    protected System.Windows.Forms.SplitContainer splitContainer;
148
149  }
150}
Note: See TracBrowser for help on using the repository browser.