Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginEditor.Designer.cs @ 3200

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

Integrated PluginAdministrator plugin into HL3.3 solution. #918 (Integrate deployment service into trunk and HL3.3 solution file)

File size: 6.3 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.PluginAdministrator {
23  partial class PluginEditor {
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 && (components != null)) {
35        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.components = new System.ComponentModel.Container();
48      this.imageList = new System.Windows.Forms.ImageList(this.components);
49      this.refreshButton = new System.Windows.Forms.Button();
50      this.uploadButton = new System.Windows.Forms.Button();
51      this.listView = new MultiSelectListView();
52      this.pluginNameHeader = new System.Windows.Forms.ColumnHeader();
53      this.localVersionHeader = new System.Windows.Forms.ColumnHeader();
54      this.serverVersionHeader = new System.Windows.Forms.ColumnHeader();
55      this.descriptionHeader = new System.Windows.Forms.ColumnHeader();
56      this.SuspendLayout();
57      //
58      // imageList
59      //
60      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
61      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
62      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
63      //
64      // refreshButton
65      //
66      this.refreshButton.Location = new System.Drawing.Point(3, 3);
67      this.refreshButton.Name = "refreshButton";
68      this.refreshButton.Size = new System.Drawing.Size(75, 23);
69      this.refreshButton.TabIndex = 6;
70      this.refreshButton.Text = "Refresh";
71      this.refreshButton.UseVisualStyleBackColor = true;
72      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
73      //
74      // uploadButton
75      //
76      this.uploadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
77      this.uploadButton.Location = new System.Drawing.Point(3, 482);
78      this.uploadButton.Name = "uploadButton";
79      this.uploadButton.Size = new System.Drawing.Size(75, 23);
80      this.uploadButton.TabIndex = 7;
81      this.uploadButton.Text = "Upload";
82      this.uploadButton.UseVisualStyleBackColor = true;
83      this.uploadButton.Click += new System.EventHandler(this.uploadButton_Click);
84      //
85      // listView
86      //
87      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
88                  | System.Windows.Forms.AnchorStyles.Left)
89                  | System.Windows.Forms.AnchorStyles.Right)));
90      this.listView.CheckBoxes = true;
91      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
92            this.pluginNameHeader,
93            this.localVersionHeader,
94            this.serverVersionHeader,
95            this.descriptionHeader});
96      this.listView.Location = new System.Drawing.Point(3, 32);
97      this.listView.Name = "listView";
98      this.listView.Size = new System.Drawing.Size(536, 444);
99      this.listView.StateImageList = this.imageList;
100      this.listView.SuppressItemCheckedEvents = false;
101      this.listView.TabIndex = 8;
102      this.listView.UseCompatibleStateImageBehavior = false;
103      this.listView.View = System.Windows.Forms.View.Details;
104      this.listView.ItemActivate += new System.EventHandler(this.listView_ItemActivate);
105      this.listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
106      //
107      // pluginNameHeader
108      //
109      this.pluginNameHeader.Text = "Name";
110      this.pluginNameHeader.Width = 161;
111      //
112      // localVersionHeader
113      //
114      this.localVersionHeader.Text = "Local Version";
115      this.localVersionHeader.Width = 85;
116      //
117      // serverVersionHeader
118      //
119      this.serverVersionHeader.Text = "Server Version";
120      this.serverVersionHeader.Width = 91;
121      //
122      // descriptionHeader
123      //
124      this.descriptionHeader.Text = "Description";
125      this.descriptionHeader.Width = 194;
126      //
127      // PluginEditor
128      //
129      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
130      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
131      this.Controls.Add(this.listView);
132      this.Controls.Add(this.uploadButton);
133      this.Controls.Add(this.refreshButton);
134      this.Name = "PluginEditor";
135      this.Size = new System.Drawing.Size(539, 508);
136      this.ResumeLayout(false);
137
138    }
139
140    #endregion
141
142    private System.Windows.Forms.Button refreshButton;
143    private System.Windows.Forms.Button uploadButton;
144    private System.Windows.Forms.ImageList imageList;
145    private MultiSelectListView listView;
146    private System.Windows.Forms.ColumnHeader pluginNameHeader;
147    private System.Windows.Forms.ColumnHeader localVersionHeader;
148    private System.Windows.Forms.ColumnHeader serverVersionHeader;
149    private System.Windows.Forms.ColumnHeader descriptionHeader;
150  }
151}
Note: See TracBrowser for help on using the repository browser.