Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/DataSetListView.Designer.cs @ 989

Last change on this file since 989 was 989, checked in by gkronber, 15 years ago

worked on #419 (Refactor CEDMA plugins)

File size: 6.8 KB
RevLine 
[357]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
[377]25namespace HeuristicLab.CEDMA.Core {
[957]26  partial class DataSetListView {
[357]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) {
[377]37      if(disposing && (components != null)) {
[357]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();
[989]51      this.dataSetsGroupBox = new System.Windows.Forms.GroupBox();
52      this.dataSetsTreeView = new System.Windows.Forms.TreeView();
[357]53      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
54      this.addButton = new System.Windows.Forms.Button();
[510]55      this.refreshButton = new System.Windows.Forms.Button();
[357]56      this.splitContainer1.Panel1.SuspendLayout();
57      this.splitContainer1.Panel2.SuspendLayout();
58      this.splitContainer1.SuspendLayout();
[989]59      this.dataSetsGroupBox.SuspendLayout();
[357]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      //
[989]73      this.splitContainer1.Panel1.Controls.Add(this.dataSetsGroupBox);
[357]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      //
[989]82      // dataSetsGroupBox
[357]83      //
[989]84      this.dataSetsGroupBox.Controls.Add(this.dataSetsTreeView);
85      this.dataSetsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.dataSetsGroupBox.Location = new System.Drawing.Point(0, 0);
87      this.dataSetsGroupBox.Name = "dataSetsGroupBox";
88      this.dataSetsGroupBox.Size = new System.Drawing.Size(135, 155);
89      this.dataSetsGroupBox.TabIndex = 0;
90      this.dataSetsGroupBox.TabStop = false;
91      this.dataSetsGroupBox.Text = "&Data Sets";
[357]92      //
[510]93      // agentTreeView
94      //
[989]95      this.dataSetsTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
96      this.dataSetsTreeView.Location = new System.Drawing.Point(3, 16);
97      this.dataSetsTreeView.Name = "agentTreeView";
98      this.dataSetsTreeView.Size = new System.Drawing.Size(129, 136);
99      this.dataSetsTreeView.TabIndex = 0;
100      this.dataSetsTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.dataSetsTreeView_AfterSelect);
[510]101      //
[357]102      // detailsGroupBox
103      //
104      this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
105      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
106      this.detailsGroupBox.Name = "detailsGroupBox";
107      this.detailsGroupBox.Size = new System.Drawing.Size(137, 155);
108      this.detailsGroupBox.TabIndex = 0;
109      this.detailsGroupBox.TabStop = false;
110      this.detailsGroupBox.Text = "&Details";
111      //
112      // addButton
113      //
114      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
115      this.addButton.Location = new System.Drawing.Point(0, 161);
116      this.addButton.Name = "addButton";
117      this.addButton.Size = new System.Drawing.Size(75, 23);
118      this.addButton.TabIndex = 1;
119      this.addButton.Text = "&Add...";
120      this.addButton.UseVisualStyleBackColor = true;
121      this.addButton.Click += new System.EventHandler(this.addButton_Click);
122      //
[510]123      // refreshButton
[357]124      //
[510]125      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
126      this.refreshButton.Location = new System.Drawing.Point(81, 161);
127      this.refreshButton.Name = "refreshButton";
128      this.refreshButton.Size = new System.Drawing.Size(75, 23);
129      this.refreshButton.TabIndex = 2;
130      this.refreshButton.Text = "&Refresh";
131      this.refreshButton.UseVisualStyleBackColor = true;
132      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
[389]133      //
[989]134      // DataSetListView
[514]135      //
[357]136      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[510]137      this.Controls.Add(this.refreshButton);
[357]138      this.Controls.Add(this.addButton);
139      this.Controls.Add(this.splitContainer1);
[989]140      this.Name = "DataSetListView";
[357]141      this.Size = new System.Drawing.Size(276, 184);
142      this.splitContainer1.Panel1.ResumeLayout(false);
143      this.splitContainer1.Panel2.ResumeLayout(false);
144      this.splitContainer1.ResumeLayout(false);
[989]145      this.dataSetsGroupBox.ResumeLayout(false);
[357]146      this.ResumeLayout(false);
147
148    }
149
150    #endregion
151
152    private System.Windows.Forms.SplitContainer splitContainer1;
[989]153    private System.Windows.Forms.GroupBox dataSetsGroupBox;
[357]154    private System.Windows.Forms.GroupBox detailsGroupBox;
155    private System.Windows.Forms.Button addButton;
[989]156    private TreeView dataSetsTreeView;
[510]157    private Button refreshButton;
[357]158  }
159}
Note: See TracBrowser for help on using the repository browser.