Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/PluginEditor.Designer.cs @ 3474

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

Incorporated review comments by swagner into plugin infrastructure. #989 (Implement review comments in plugin infrastructure)

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