Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/LocalPluginManager.Designer.cs @ 3038

Last change on this file since 3038 was 3006, checked in by gkronber, 15 years ago

Implemented deployment service on servdev.heuristiclab.com and changed all service references and configurations to point to the service address. Improved GUI of installation manager. Implemented user name authentication and authorization for the deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 4.6 KB
Line 
1namespace HeuristicLab.PluginInfrastructure.Advanced {
2  partial class LocalPluginManager {
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      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Active Plugins", System.Windows.Forms.HorizontalAlignment.Left);
28      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Disabled Plugins", System.Windows.Forms.HorizontalAlignment.Left);
29      this.localPluginsListView = new System.Windows.Forms.ListView();
30      this.pluginNameHeader = new System.Windows.Forms.ColumnHeader();
31      this.versionHeader = new System.Windows.Forms.ColumnHeader();
32      this.pluginDescriptionHeader = new System.Windows.Forms.ColumnHeader();
33      this.imageListForLocalItems = new System.Windows.Forms.ImageList(this.components);
34      this.SuspendLayout();
35      //
36      // localPluginsListView
37      //
38      this.localPluginsListView.CheckBoxes = true;
39      this.localPluginsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
40            this.pluginNameHeader,
41            this.versionHeader,
42            this.pluginDescriptionHeader});
43      this.localPluginsListView.Dock = System.Windows.Forms.DockStyle.Fill;
44      this.localPluginsListView.FullRowSelect = true;
45      listViewGroup1.Header = "Active Plugins";
46      listViewGroup1.Name = "activePluginsGroup";
47      listViewGroup2.Header = "Disabled Plugins";
48      listViewGroup2.Name = "disabledPluginsGroup";
49      this.localPluginsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
50            listViewGroup1,
51            listViewGroup2});
52      this.localPluginsListView.Location = new System.Drawing.Point(0, 0);
53      this.localPluginsListView.Name = "localPluginsListView";
54      this.localPluginsListView.Size = new System.Drawing.Size(570, 547);
55      this.localPluginsListView.StateImageList = this.imageListForLocalItems;
56      this.localPluginsListView.TabIndex = 8;
57      this.localPluginsListView.UseCompatibleStateImageBehavior = false;
58      this.localPluginsListView.View = System.Windows.Forms.View.Details;
59      this.localPluginsListView.ItemActivate += new System.EventHandler(this.localPluginsListView_ItemActivate);
60      this.localPluginsListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.pluginsListView_ItemChecked);
61      //
62      // pluginNameHeader
63      //
64      this.pluginNameHeader.Text = "Name";
65      this.pluginNameHeader.Width = 220;
66      //
67      // versionHeader
68      //
69      this.versionHeader.Text = "Version";
70      this.versionHeader.Width = 120;
71      //
72      // pluginDescriptionHeader
73      //
74      this.pluginDescriptionHeader.Text = "Description";
75      this.pluginDescriptionHeader.Width = 243;
76      //
77      // imageListForLocalItems
78      //
79      this.imageListForLocalItems.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
80      this.imageListForLocalItems.ImageSize = new System.Drawing.Size(13, 13);
81      this.imageListForLocalItems.TransparentColor = System.Drawing.Color.Transparent;
82      //
83      // LocalPluginManager
84      //
85      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
86      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
87      this.Controls.Add(this.localPluginsListView);
88      this.Name = "LocalPluginManager";
89      this.Size = new System.Drawing.Size(570, 547);
90      this.ResumeLayout(false);
91
92    }
93
94    #endregion
95
96    private System.Windows.Forms.ListView localPluginsListView;
97    private System.Windows.Forms.ColumnHeader pluginNameHeader;
98    private System.Windows.Forms.ColumnHeader versionHeader;
99    private System.Windows.Forms.ColumnHeader pluginDescriptionHeader;
100    private System.Windows.Forms.ImageList imageListForLocalItems;
101  }
102}
Note: See TracBrowser for help on using the repository browser.