Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/RemotePluginInstaller.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.2 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
21namespace HeuristicLab.PluginInfrastructure.Advanced {
22  partial class RemotePluginInstallerView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Products", System.Windows.Forms.HorizontalAlignment.Left);
47      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("New Plugins", System.Windows.Forms.HorizontalAlignment.Left);
48      System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("All Plugins", System.Windows.Forms.HorizontalAlignment.Left);
49      this.remotePluginsListView = new HeuristicLab.PluginInfrastructure.Advanced.MultiSelectListView();
50      this.nameHeader = new System.Windows.Forms.ColumnHeader();
51      this.versionHeader = new System.Windows.Forms.ColumnHeader();
52      this.descriptionHeader = new System.Windows.Forms.ColumnHeader();
53      this.SuspendLayout();
54      //
55      // remotePluginsListView
56      //
57      this.remotePluginsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
58                  | System.Windows.Forms.AnchorStyles.Left)
59                  | System.Windows.Forms.AnchorStyles.Right)));
60      this.remotePluginsListView.CheckBoxes = true;
61      this.remotePluginsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
62            this.nameHeader,
63            this.versionHeader,
64            this.descriptionHeader});
65      listViewGroup1.Header = "Products";
66      listViewGroup1.Name = "productsGroup";
67      listViewGroup2.Header = "New Plugins";
68      listViewGroup2.Name = "newPluginsGroup";
69      listViewGroup3.Header = "All Plugins";
70      listViewGroup3.Name = "allPluginsGroup";
71      this.remotePluginsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
72            listViewGroup1,
73            listViewGroup2,
74            listViewGroup3});
75      this.remotePluginsListView.Location = new System.Drawing.Point(0, 0);
76      this.remotePluginsListView.Name = "remotePluginsListView";
77      this.remotePluginsListView.Size = new System.Drawing.Size(533, 558);
78      this.remotePluginsListView.SuppressItemCheckedEvents = false;
79      this.remotePluginsListView.TabIndex = 0;
80      this.remotePluginsListView.UseCompatibleStateImageBehavior = false;
81      this.remotePluginsListView.View = System.Windows.Forms.View.Details;
82      this.remotePluginsListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.remotePluginsListView_ItemChecked);
83      //
84      // nameHeader
85      //
86      this.nameHeader.Text = "Name";
87      this.nameHeader.Width = 185;
88      //
89      // versionHeader
90      //
91      this.versionHeader.Text = "Version";
92      this.versionHeader.Width = 93;
93      //
94      // descriptionHeader
95      //
96      this.descriptionHeader.Text = "Description";
97      this.descriptionHeader.Width = 250;
98      //
99      // RemotePluginInstallerView
100      //
101      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
102      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
103      this.Controls.Add(this.remotePluginsListView);
104      this.Name = "RemotePluginInstallerView";
105      this.Size = new System.Drawing.Size(533, 558);
106      this.ResumeLayout(false);
107
108    }
109
110    #endregion
111
112    private MultiSelectListView remotePluginsListView;
113    private System.Windows.Forms.ColumnHeader nameHeader;
114    private System.Windows.Forms.ColumnHeader versionHeader;
115    private System.Windows.Forms.ColumnHeader descriptionHeader;
116  }
117}
Note: See TracBrowser for help on using the repository browser.