Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/OperatorBaseVariableInfosView.Designer.cs @ 2

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 6.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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 System;
23using System.Windows.Forms;
24
25namespace HeuristicLab.Core {
26  partial class OperatorBaseVariableInfosView {
27    /// <summary>
28    /// Required designer variable.
29    /// </summary>
30    private System.ComponentModel.IContainer components = null;
31
32    /// <summary>
33    /// Clean up any resources being used.
34    /// </summary>
35    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
36    protected override void Dispose(bool disposing) {
37      foreach (ListViewItem item in variableInfosListView.Items) {
38        ((IVariableInfo)item.Tag).ActualNameChanged -= new EventHandler(VariableInfo_ActualNameChanged);
39      }
40      if (disposing && (components != null)) {
41        components.Dispose();
42      }
43      base.Dispose(disposing);
44    }
45
46    #region Component Designer generated code
47
48    /// <summary>
49    /// Required method for Designer support - do not modify
50    /// the contents of this method with the code editor.
51    /// </summary>
52    private void InitializeComponent() {
53      this.splitContainer = new System.Windows.Forms.SplitContainer();
54      this.variableInfosGroupBox = new System.Windows.Forms.GroupBox();
55      this.variableInfosListView = new System.Windows.Forms.ListView();
56      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
57      this.variableInfoDetailsGroupBox = new System.Windows.Forms.GroupBox();
58      this.splitContainer.Panel1.SuspendLayout();
59      this.splitContainer.Panel2.SuspendLayout();
60      this.splitContainer.SuspendLayout();
61      this.variableInfosGroupBox.SuspendLayout();
62      this.SuspendLayout();
63      //
64      // splitContainer
65      //
66      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
67      this.splitContainer.Location = new System.Drawing.Point(0, 0);
68      this.splitContainer.Name = "splitContainer";
69      //
70      // splitContainer.Panel1
71      //
72      this.splitContainer.Panel1.Controls.Add(this.variableInfosGroupBox);
73      //
74      // splitContainer.Panel2
75      //
76      this.splitContainer.Panel2.Controls.Add(this.variableInfoDetailsGroupBox);
77      this.splitContainer.Size = new System.Drawing.Size(423, 333);
78      this.splitContainer.SplitterDistance = 203;
79      this.splitContainer.TabIndex = 0;
80      //
81      // variableInfosGroupBox
82      //
83      this.variableInfosGroupBox.Controls.Add(this.variableInfosListView);
84      this.variableInfosGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.variableInfosGroupBox.Location = new System.Drawing.Point(0, 0);
86      this.variableInfosGroupBox.Name = "variableInfosGroupBox";
87      this.variableInfosGroupBox.Size = new System.Drawing.Size(203, 333);
88      this.variableInfosGroupBox.TabIndex = 0;
89      this.variableInfosGroupBox.TabStop = false;
90      this.variableInfosGroupBox.Text = "&Variable Infos";
91      //
92      // variableInfosListView
93      //
94      this.variableInfosListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
95            this.columnHeader1});
96      this.variableInfosListView.Dock = System.Windows.Forms.DockStyle.Fill;
97      this.variableInfosListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
98      this.variableInfosListView.HideSelection = false;
99      this.variableInfosListView.Location = new System.Drawing.Point(3, 16);
100      this.variableInfosListView.Name = "variableInfosListView";
101      this.variableInfosListView.Size = new System.Drawing.Size(197, 314);
102      this.variableInfosListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
103      this.variableInfosListView.TabIndex = 0;
104      this.variableInfosListView.UseCompatibleStateImageBehavior = false;
105      this.variableInfosListView.View = System.Windows.Forms.View.Details;
106      this.variableInfosListView.SelectedIndexChanged += new System.EventHandler(this.variableInfosListView_SelectedIndexChanged);
107      this.variableInfosListView.SizeChanged += new System.EventHandler(this.variableInfosListView_SizeChanged);
108      //
109      // variableInfoDetailsGroupBox
110      //
111      this.variableInfoDetailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
112      this.variableInfoDetailsGroupBox.Location = new System.Drawing.Point(0, 0);
113      this.variableInfoDetailsGroupBox.Name = "variableInfoDetailsGroupBox";
114      this.variableInfoDetailsGroupBox.Size = new System.Drawing.Size(216, 333);
115      this.variableInfoDetailsGroupBox.TabIndex = 0;
116      this.variableInfoDetailsGroupBox.TabStop = false;
117      this.variableInfoDetailsGroupBox.Text = "&Details";
118      //
119      // OperatorBaseVariableInfosView
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 = "OperatorBaseVariableInfosView";
125      this.Size = new System.Drawing.Size(423, 333);
126      this.splitContainer.Panel1.ResumeLayout(false);
127      this.splitContainer.Panel2.ResumeLayout(false);
128      this.splitContainer.ResumeLayout(false);
129      this.variableInfosGroupBox.ResumeLayout(false);
130      this.ResumeLayout(false);
131
132    }
133
134    #endregion
135
136    private System.Windows.Forms.ColumnHeader columnHeader1;
137    protected SplitContainer splitContainer;
138    protected GroupBox variableInfosGroupBox;
139    protected ListView variableInfosListView;
140    protected GroupBox variableInfoDetailsGroupBox;
141
142
143  }
144}
Note: See TracBrowser for help on using the repository browser.