Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/ProductEditor.Designer.cs @ 2804

Last change on this file since 2804 was 2804, checked in by gkronber, 14 years ago

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 9.0 KB
Line 
1namespace HeuristicLab.DeploymentService.AdminClient {
2  partial class ProductEditor {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.productsListBox = new System.Windows.Forms.ListBox();
28      this.pluginsList = new System.Windows.Forms.CheckedListBox();
29      this.refreshButton = new System.Windows.Forms.Button();
30      this.saveButton = new System.Windows.Forms.Button();
31      this.newProductButton = new System.Windows.Forms.Button();
32      this.splitContainer = new System.Windows.Forms.SplitContainer();
33      this.pluginsLabel = new System.Windows.Forms.Label();
34      this.versionTextBox = new System.Windows.Forms.TextBox();
35      this.versionLabel = new System.Windows.Forms.Label();
36      this.nameTextBox = new System.Windows.Forms.TextBox();
37      this.nameLabel = new System.Windows.Forms.Label();
38      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
39      this.splitContainer.Panel1.SuspendLayout();
40      this.splitContainer.Panel2.SuspendLayout();
41      this.splitContainer.SuspendLayout();
42      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
43      this.SuspendLayout();
44      //
45      // productsListBox
46      //
47      this.productsListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
48                  | System.Windows.Forms.AnchorStyles.Left)
49                  | System.Windows.Forms.AnchorStyles.Right)));
50      this.productsListBox.FormattingEnabled = true;
51      this.productsListBox.Location = new System.Drawing.Point(3, 3);
52      this.productsListBox.Name = "productsListBox";
53      this.productsListBox.Size = new System.Drawing.Size(173, 355);
54      this.productsListBox.TabIndex = 0;
55      this.productsListBox.SelectedIndexChanged += new System.EventHandler(this.productsListBox_SelectedIndexChanged);
56      //
57      // pluginsList
58      //
59      this.pluginsList.FormattingEnabled = true;
60      this.pluginsList.Location = new System.Drawing.Point(6, 85);
61      this.pluginsList.Name = "pluginsList";
62      this.pluginsList.Size = new System.Drawing.Size(347, 289);
63      this.pluginsList.TabIndex = 1;
64      //
65      // refreshButton
66      //
67      this.refreshButton.Location = new System.Drawing.Point(3, 3);
68      this.refreshButton.Name = "refreshButton";
69      this.refreshButton.Size = new System.Drawing.Size(75, 23);
70      this.refreshButton.TabIndex = 1;
71      this.refreshButton.Text = "Refresh";
72      this.refreshButton.UseVisualStyleBackColor = true;
73      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
74      //
75      // saveButton
76      //
77      this.saveButton.Location = new System.Drawing.Point(84, 3);
78      this.saveButton.Name = "saveButton";
79      this.saveButton.Size = new System.Drawing.Size(96, 23);
80      this.saveButton.TabIndex = 2;
81      this.saveButton.Text = "Save changes";
82      this.saveButton.UseVisualStyleBackColor = true;
83      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
84      //
85      // newProductButton
86      //
87      this.newProductButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
88      this.newProductButton.Location = new System.Drawing.Point(3, 365);
89      this.newProductButton.Name = "newProductButton";
90      this.newProductButton.Size = new System.Drawing.Size(91, 23);
91      this.newProductButton.TabIndex = 3;
92      this.newProductButton.Text = "New product";
93      this.newProductButton.UseVisualStyleBackColor = true;
94      this.newProductButton.Click += new System.EventHandler(this.newProductButton_Click);
95      //
96      // splitContainer
97      //
98      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
99                  | System.Windows.Forms.AnchorStyles.Left)
100                  | System.Windows.Forms.AnchorStyles.Right)));
101      this.splitContainer.Location = new System.Drawing.Point(3, 32);
102      this.splitContainer.Name = "splitContainer";
103      //
104      // splitContainer.Panel1
105      //
106      this.splitContainer.Panel1.Controls.Add(this.productsListBox);
107      this.splitContainer.Panel1.Controls.Add(this.newProductButton);
108      //
109      // splitContainer.Panel2
110      //
111      this.splitContainer.Panel2.Controls.Add(this.pluginsLabel);
112      this.splitContainer.Panel2.Controls.Add(this.versionTextBox);
113      this.splitContainer.Panel2.Controls.Add(this.versionLabel);
114      this.splitContainer.Panel2.Controls.Add(this.nameTextBox);
115      this.splitContainer.Panel2.Controls.Add(this.nameLabel);
116      this.splitContainer.Panel2.Controls.Add(this.pluginsList);
117      this.splitContainer.Size = new System.Drawing.Size(539, 391);
118      this.splitContainer.SplitterDistance = 179;
119      this.splitContainer.TabIndex = 4;
120      //
121      // pluginsLabel
122      //
123      this.pluginsLabel.AutoSize = true;
124      this.pluginsLabel.Location = new System.Drawing.Point(4, 69);
125      this.pluginsLabel.Name = "pluginsLabel";
126      this.pluginsLabel.Size = new System.Drawing.Size(44, 13);
127      this.pluginsLabel.TabIndex = 6;
128      this.pluginsLabel.Text = "Plugins:";
129      //
130      // versionTextBox
131      //
132      this.versionTextBox.Location = new System.Drawing.Point(47, 29);
133      this.versionTextBox.Name = "versionTextBox";
134      this.versionTextBox.Size = new System.Drawing.Size(100, 20);
135      this.versionTextBox.TabIndex = 5;
136      this.versionTextBox.TextChanged += new System.EventHandler(this.versionTextBox_TextChanged);
137      //
138      // versionLabel
139      //
140      this.versionLabel.AutoSize = true;
141      this.versionLabel.Location = new System.Drawing.Point(3, 32);
142      this.versionLabel.Name = "versionLabel";
143      this.versionLabel.Size = new System.Drawing.Size(45, 13);
144      this.versionLabel.TabIndex = 4;
145      this.versionLabel.Text = "Version:";
146      //
147      // nameTextBox
148      //
149      this.nameTextBox.Location = new System.Drawing.Point(47, 3);
150      this.nameTextBox.Name = "nameTextBox";
151      this.nameTextBox.Size = new System.Drawing.Size(100, 20);
152      this.nameTextBox.TabIndex = 3;
153      this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
154      //
155      // nameLabel
156      //
157      this.nameLabel.AutoSize = true;
158      this.nameLabel.Location = new System.Drawing.Point(3, 6);
159      this.nameLabel.Name = "nameLabel";
160      this.nameLabel.Size = new System.Drawing.Size(38, 13);
161      this.nameLabel.TabIndex = 2;
162      this.nameLabel.Text = "Name:";
163      //
164      // errorProvider
165      //
166      this.errorProvider.ContainerControl = this;
167      //
168      // ProductEditor
169      //
170      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
171      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
172      this.Controls.Add(this.splitContainer);
173      this.Controls.Add(this.saveButton);
174      this.Controls.Add(this.refreshButton);
175      this.Name = "ProductEditor";
176      this.Size = new System.Drawing.Size(545, 426);
177      this.splitContainer.Panel1.ResumeLayout(false);
178      this.splitContainer.Panel2.ResumeLayout(false);
179      this.splitContainer.Panel2.PerformLayout();
180      this.splitContainer.ResumeLayout(false);
181      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
182      this.ResumeLayout(false);
183
184    }
185
186    #endregion
187
188    private System.Windows.Forms.ListBox productsListBox;
189    private System.Windows.Forms.CheckedListBox pluginsList;
190    private System.Windows.Forms.Button refreshButton;
191    private System.Windows.Forms.Button saveButton;
192    private System.Windows.Forms.Button newProductButton;
193    private System.Windows.Forms.SplitContainer splitContainer;
194    private System.Windows.Forms.Label pluginsLabel;
195    private System.Windows.Forms.TextBox versionTextBox;
196    private System.Windows.Forms.Label versionLabel;
197    private System.Windows.Forms.TextBox nameTextBox;
198    private System.Windows.Forms.Label nameLabel;
199    private System.Windows.Forms.ErrorProvider errorProvider;
200
201  }
202}
Note: See TracBrowser for help on using the repository browser.