Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/AdministrationView.Designer.cs @ 4421

Last change on this file since 4421 was 4421, checked in by swagner, 14 years ago

Worked on OKB data model and services (#1174)

File size: 6.4 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.Clients.OKB {
23  partial class AdministrationView {
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.tabControl = new System.Windows.Forms.TabControl();
48      this.algorithmClassesTabPage = new System.Windows.Forms.TabPage();
49      this.algorithmsTabPage = new System.Windows.Forms.TabPage();
50      this.refreshAlgorithmsButton = new System.Windows.Forms.Button();
51      this.refreshAlgorithmClassesButton = new System.Windows.Forms.Button();
52      this.tabControl.SuspendLayout();
53      this.algorithmClassesTabPage.SuspendLayout();
54      this.algorithmsTabPage.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // tabControl
58      //
59      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60                  | System.Windows.Forms.AnchorStyles.Left)
61                  | System.Windows.Forms.AnchorStyles.Right)));
62      this.tabControl.Controls.Add(this.algorithmClassesTabPage);
63      this.tabControl.Controls.Add(this.algorithmsTabPage);
64      this.tabControl.Location = new System.Drawing.Point(0, 0);
65      this.tabControl.Name = "tabControl";
66      this.tabControl.SelectedIndex = 0;
67      this.tabControl.Size = new System.Drawing.Size(727, 435);
68      this.tabControl.TabIndex = 2;
69      //
70      // algorithmClassesTabPage
71      //
72      this.algorithmClassesTabPage.Controls.Add(this.refreshAlgorithmClassesButton);
73      this.algorithmClassesTabPage.Location = new System.Drawing.Point(4, 22);
74      this.algorithmClassesTabPage.Name = "algorithmClassesTabPage";
75      this.algorithmClassesTabPage.Padding = new System.Windows.Forms.Padding(3);
76      this.algorithmClassesTabPage.Size = new System.Drawing.Size(719, 409);
77      this.algorithmClassesTabPage.TabIndex = 0;
78      this.algorithmClassesTabPage.Text = "Algorithm Classes";
79      this.algorithmClassesTabPage.UseVisualStyleBackColor = true;
80      //
81      // algorithmsTabPage
82      //
83      this.algorithmsTabPage.Controls.Add(this.refreshAlgorithmsButton);
84      this.algorithmsTabPage.Location = new System.Drawing.Point(4, 22);
85      this.algorithmsTabPage.Name = "algorithmsTabPage";
86      this.algorithmsTabPage.Padding = new System.Windows.Forms.Padding(3);
87      this.algorithmsTabPage.Size = new System.Drawing.Size(719, 409);
88      this.algorithmsTabPage.TabIndex = 1;
89      this.algorithmsTabPage.Text = "Algorithms";
90      this.algorithmsTabPage.UseVisualStyleBackColor = true;
91      //
92      // refreshAlgorithmsButton
93      //
94      this.refreshAlgorithmsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
95      this.refreshAlgorithmsButton.Location = new System.Drawing.Point(6, 380);
96      this.refreshAlgorithmsButton.Name = "refreshAlgorithmsButton";
97      this.refreshAlgorithmsButton.Size = new System.Drawing.Size(75, 23);
98      this.refreshAlgorithmsButton.TabIndex = 1;
99      this.refreshAlgorithmsButton.Text = "&Refresh";
100      this.refreshAlgorithmsButton.UseVisualStyleBackColor = true;
101      this.refreshAlgorithmsButton.Click += new System.EventHandler(this.refreshAlgorithmsButton_Click);
102      //
103      // refreshAlgorithmClassesButton
104      //
105      this.refreshAlgorithmClassesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
106      this.refreshAlgorithmClassesButton.Location = new System.Drawing.Point(6, 380);
107      this.refreshAlgorithmClassesButton.Name = "refreshAlgorithmClassesButton";
108      this.refreshAlgorithmClassesButton.Size = new System.Drawing.Size(75, 23);
109      this.refreshAlgorithmClassesButton.TabIndex = 2;
110      this.refreshAlgorithmClassesButton.Text = "&Refresh";
111      this.refreshAlgorithmClassesButton.UseVisualStyleBackColor = true;
112      this.refreshAlgorithmClassesButton.Click += new System.EventHandler(this.refreshAlgorithmClassesButton_Click);
113      //
114      // AdministrationView
115      //
116      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
117      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
118      this.Controls.Add(this.tabControl);
119      this.Name = "AdministrationView";
120      this.Size = new System.Drawing.Size(727, 435);
121      this.tabControl.ResumeLayout(false);
122      this.algorithmClassesTabPage.ResumeLayout(false);
123      this.algorithmsTabPage.ResumeLayout(false);
124      this.ResumeLayout(false);
125
126    }
127
128    #endregion
129
130    private System.Windows.Forms.TabControl tabControl;
131    private System.Windows.Forms.TabPage algorithmClassesTabPage;
132    private System.Windows.Forms.TabPage algorithmsTabPage;
133    private System.Windows.Forms.Button refreshAlgorithmsButton;
134    private System.Windows.Forms.Button refreshAlgorithmClassesButton;
135
136  }
137}
Note: See TracBrowser for help on using the repository browser.