Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Console/AgentListView.Designer.cs @ 357

Last change on this file since 357 was 357, checked in by gkronber, 16 years ago

worked on ticket #187. code is a mess. work-in-progress.

File size: 6.7 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.CEDMA.Console {
26  partial class AgentListView {
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      if (disposing && (components != null)) {
38        components.Dispose();
39      }
40      base.Dispose(disposing);
41    }
42
43    #region Windows Form Designer generated code
44
45    /// <summary>
46    /// Required method for Designer support - do not modify
47    /// the contents of this method with the code editor.
48    /// </summary>
49    private void InitializeComponent() {
50      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
51      this.agentsGroupBox = new System.Windows.Forms.GroupBox();
52      this.agentsListView = new System.Windows.Forms.ListView();
53      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
54      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
55      this.addButton = new System.Windows.Forms.Button();
56      this.splitContainer1.Panel1.SuspendLayout();
57      this.splitContainer1.Panel2.SuspendLayout();
58      this.splitContainer1.SuspendLayout();
59      this.agentsGroupBox.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // splitContainer1
63      //
64      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
65                  | System.Windows.Forms.AnchorStyles.Left)
66                  | System.Windows.Forms.AnchorStyles.Right)));
67      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
68      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
69      this.splitContainer1.Name = "splitContainer1";
70      //
71      // splitContainer1.Panel1
72      //
73      this.splitContainer1.Panel1.Controls.Add(this.agentsGroupBox);
74      //
75      // splitContainer1.Panel2
76      //
77      this.splitContainer1.Panel2.Controls.Add(this.detailsGroupBox);
78      this.splitContainer1.Size = new System.Drawing.Size(276, 155);
79      this.splitContainer1.SplitterDistance = 135;
80      this.splitContainer1.TabIndex = 0;
81      //
82      // agentsGroupBox
83      //
84      this.agentsGroupBox.Controls.Add(this.agentsListView);
85      this.agentsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.agentsGroupBox.Location = new System.Drawing.Point(0, 0);
87      this.agentsGroupBox.Name = "agentsGroupBox";
88      this.agentsGroupBox.Size = new System.Drawing.Size(135, 155);
89      this.agentsGroupBox.TabIndex = 0;
90      this.agentsGroupBox.TabStop = false;
91      this.agentsGroupBox.Text = "&Agents";
92      //
93      // agentsListView
94      //
95      this.agentsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
96            this.columnHeader1});
97      this.agentsListView.Dock = System.Windows.Forms.DockStyle.Fill;
98      this.agentsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
99      this.agentsListView.HideSelection = false;
100      this.agentsListView.Location = new System.Drawing.Point(3, 16);
101      this.agentsListView.Name = "agentsListView";
102      this.agentsListView.Size = new System.Drawing.Size(129, 136);
103      this.agentsListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
104      this.agentsListView.TabIndex = 0;
105      this.agentsListView.UseCompatibleStateImageBehavior = false;
106      this.agentsListView.View = System.Windows.Forms.View.Details;
107      this.agentsListView.SelectedIndexChanged += new System.EventHandler(this.variablesListView_SelectedIndexChanged);
108      this.agentsListView.SizeChanged += new System.EventHandler(this.variablesListView_SizeChanged);
109      //
110      // detailsGroupBox
111      //
112      this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
113      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
114      this.detailsGroupBox.Name = "detailsGroupBox";
115      this.detailsGroupBox.Size = new System.Drawing.Size(137, 155);
116      this.detailsGroupBox.TabIndex = 0;
117      this.detailsGroupBox.TabStop = false;
118      this.detailsGroupBox.Text = "&Details";
119      //
120      // addButton
121      //
122      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
123      this.addButton.Location = new System.Drawing.Point(0, 161);
124      this.addButton.Name = "addButton";
125      this.addButton.Size = new System.Drawing.Size(75, 23);
126      this.addButton.TabIndex = 1;
127      this.addButton.Text = "&Add...";
128      this.addButton.UseVisualStyleBackColor = true;
129      this.addButton.Click += new System.EventHandler(this.addButton_Click);
130      //
131      // AgentView
132      //
133      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
134      this.Controls.Add(this.addButton);
135      this.Controls.Add(this.splitContainer1);
136      this.Name = "AgentView";
137      this.Size = new System.Drawing.Size(276, 184);
138      this.splitContainer1.Panel1.ResumeLayout(false);
139      this.splitContainer1.Panel2.ResumeLayout(false);
140      this.splitContainer1.ResumeLayout(false);
141      this.agentsGroupBox.ResumeLayout(false);
142      this.ResumeLayout(false);
143
144    }
145
146    #endregion
147
148    private System.Windows.Forms.SplitContainer splitContainer1;
149    private System.Windows.Forms.GroupBox agentsGroupBox;
150    private System.Windows.Forms.ListView agentsListView;
151    private System.Windows.Forms.ColumnHeader columnHeader1;
152    private System.Windows.Forms.GroupBox detailsGroupBox;
153    private System.Windows.Forms.Button addButton;
154  }
155}
Note: See TracBrowser for help on using the repository browser.