Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Core/AgentListView.Designer.cs @ 393

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

unified runs and agents (are actually the same with the minor difference that agents can create new agents (runs)) (ticket #188)

File size: 6.1 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.Core {
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.detailsGroupBox = new System.Windows.Forms.GroupBox();
53      this.addButton = new System.Windows.Forms.Button();
54      this.agentTreeView = new System.Windows.Forms.TreeView();
55      this.splitContainer1.Panel1.SuspendLayout();
56      this.splitContainer1.Panel2.SuspendLayout();
57      this.splitContainer1.SuspendLayout();
58      this.agentsGroupBox.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // splitContainer1
62      //
63      this.splitContainer1.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.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
67      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
68      this.splitContainer1.Name = "splitContainer1";
69      //
70      // splitContainer1.Panel1
71      //
72      this.splitContainer1.Panel1.Controls.Add(this.agentsGroupBox);
73      //
74      // splitContainer1.Panel2
75      //
76      this.splitContainer1.Panel2.Controls.Add(this.detailsGroupBox);
77      this.splitContainer1.Size = new System.Drawing.Size(276, 155);
78      this.splitContainer1.SplitterDistance = 135;
79      this.splitContainer1.TabIndex = 0;
80      //
81      // agentsGroupBox
82      //
83      this.agentsGroupBox.Controls.Add(this.agentTreeView);
84      this.agentsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.agentsGroupBox.Location = new System.Drawing.Point(0, 0);
86      this.agentsGroupBox.Name = "agentsGroupBox";
87      this.agentsGroupBox.Size = new System.Drawing.Size(135, 155);
88      this.agentsGroupBox.TabIndex = 0;
89      this.agentsGroupBox.TabStop = false;
90      this.agentsGroupBox.Text = "&Agents";
91      //
92      // detailsGroupBox
93      //
94      this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
95      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
96      this.detailsGroupBox.Name = "detailsGroupBox";
97      this.detailsGroupBox.Size = new System.Drawing.Size(137, 155);
98      this.detailsGroupBox.TabIndex = 0;
99      this.detailsGroupBox.TabStop = false;
100      this.detailsGroupBox.Text = "&Details";
101      //
102      // addButton
103      //
104      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
105      this.addButton.Location = new System.Drawing.Point(0, 161);
106      this.addButton.Name = "addButton";
107      this.addButton.Size = new System.Drawing.Size(75, 23);
108      this.addButton.TabIndex = 1;
109      this.addButton.Text = "&Add...";
110      this.addButton.UseVisualStyleBackColor = true;
111      this.addButton.Click += new System.EventHandler(this.addButton_Click);
112      //
113      // agentTreeView
114      //
115      this.agentTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
116      this.agentTreeView.Location = new System.Drawing.Point(3, 16);
117      this.agentTreeView.Name = "agentTreeView";
118      this.agentTreeView.Size = new System.Drawing.Size(129, 136);
119      this.agentTreeView.TabIndex = 0;
120      this.agentTreeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.agentTreeView_BeforeExpand);
121      this.agentTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.agentTreeView_AfterSelect);
122      //
123      // AgentListView
124      //
125      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
126      this.Controls.Add(this.addButton);
127      this.Controls.Add(this.splitContainer1);
128      this.Name = "AgentListView";
129      this.Size = new System.Drawing.Size(276, 184);
130      this.splitContainer1.Panel1.ResumeLayout(false);
131      this.splitContainer1.Panel2.ResumeLayout(false);
132      this.splitContainer1.ResumeLayout(false);
133      this.agentsGroupBox.ResumeLayout(false);
134      this.ResumeLayout(false);
135
136    }
137
138    #endregion
139
140    private System.Windows.Forms.SplitContainer splitContainer1;
141    private System.Windows.Forms.GroupBox agentsGroupBox;
142    private System.Windows.Forms.GroupBox detailsGroupBox;
143    private System.Windows.Forms.Button addButton;
144    private TreeView agentTreeView;
145  }
146}
Note: See TracBrowser for help on using the repository browser.