Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on GUI for plugin management. #891 (Refactor GUI for plugin management)

File size: 4.5 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.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.pluginsListView_ItemChecked);
60      //
61      // pluginNameHeader
62      //
63      this.pluginNameHeader.Text = "Name";
64      this.pluginNameHeader.Width = 220;
65      //
66      // versionHeader
67      //
68      this.versionHeader.Text = "Version";
69      this.versionHeader.Width = 120;
70      //
71      // pluginDescriptionHeader
72      //
73      this.pluginDescriptionHeader.Text = "Description";
74      this.pluginDescriptionHeader.Width = 243;
75      //
76      // imageListForLocalItems
77      //
78      this.imageListForLocalItems.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
79      this.imageListForLocalItems.ImageSize = new System.Drawing.Size(13, 13);
80      this.imageListForLocalItems.TransparentColor = System.Drawing.Color.Transparent;
81      //
82      // LocalPluginManager
83      //
84      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
85      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
86      this.Controls.Add(this.localPluginsListView);
87      this.Name = "LocalPluginManager";
88      this.Size = new System.Drawing.Size(570, 547);
89      this.ResumeLayout(false);
90
91    }
92
93    #endregion
94
95    private System.Windows.Forms.ListView localPluginsListView;
96    private System.Windows.Forms.ColumnHeader pluginNameHeader;
97    private System.Windows.Forms.ColumnHeader versionHeader;
98    private System.Windows.Forms.ColumnHeader pluginDescriptionHeader;
99    private System.Windows.Forms.ImageList imageListForLocalItems;
100  }
101}
Note: See TracBrowser for help on using the repository browser.