Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManagerForm.Designer.cs @ 2753

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

Implemented rudimentary form to display a list of all plugins and details. #699 (Refactor ManagerForm)

File size: 4.5 KB
Line 
1namespace HeuristicLab.PluginInfrastructure.Advanced {
2  partial class InstallationManagerForm {
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 Windows Form 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.statusStrip = new System.Windows.Forms.StatusStrip();
27      this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
28      this.detailsTextBox = new System.Windows.Forms.TextBox();
29      this.pluginsListView = new System.Windows.Forms.ListView();
30      this.tableLayoutPanel.SuspendLayout();
31      this.SuspendLayout();
32      //
33      // statusStrip
34      //
35      this.statusStrip.Location = new System.Drawing.Point(0, 433);
36      this.statusStrip.Name = "statusStrip";
37      this.statusStrip.Size = new System.Drawing.Size(394, 22);
38      this.statusStrip.TabIndex = 0;
39      this.statusStrip.Text = "statusStrip1";
40      //
41      // tableLayoutPanel
42      //
43      this.tableLayoutPanel.ColumnCount = 1;
44      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
45      this.tableLayoutPanel.Controls.Add(this.detailsTextBox, 0, 1);
46      this.tableLayoutPanel.Controls.Add(this.pluginsListView, 0, 0);
47      this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
48      this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
49      this.tableLayoutPanel.Name = "tableLayoutPanel";
50      this.tableLayoutPanel.RowCount = 2;
51      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 64F));
52      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 36F));
53      this.tableLayoutPanel.Size = new System.Drawing.Size(394, 433);
54      this.tableLayoutPanel.TabIndex = 1;
55      //
56      // detailsTextBox
57      //
58      this.detailsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
59      this.detailsTextBox.Location = new System.Drawing.Point(3, 280);
60      this.detailsTextBox.Multiline = true;
61      this.detailsTextBox.Name = "detailsTextBox";
62      this.detailsTextBox.ReadOnly = true;
63      this.detailsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
64      this.detailsTextBox.Size = new System.Drawing.Size(388, 150);
65      this.detailsTextBox.TabIndex = 0;
66      //
67      // pluginsListView
68      //
69      this.pluginsListView.Dock = System.Windows.Forms.DockStyle.Fill;
70      this.pluginsListView.Location = new System.Drawing.Point(3, 3);
71      this.pluginsListView.MultiSelect = false;
72      this.pluginsListView.Name = "pluginsListView";
73      this.pluginsListView.Size = new System.Drawing.Size(388, 271);
74      this.pluginsListView.TabIndex = 1;
75      this.pluginsListView.UseCompatibleStateImageBehavior = false;
76      this.pluginsListView.View = System.Windows.Forms.View.List;
77      this.pluginsListView.SelectedIndexChanged += new System.EventHandler(this.pluginsListView_SelectedIndexChanged);
78      //
79      // InstallationManagerForm
80      //
81      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
83      this.ClientSize = new System.Drawing.Size(394, 455);
84      this.Controls.Add(this.tableLayoutPanel);
85      this.Controls.Add(this.statusStrip);
86      this.Name = "InstallationManagerForm";
87      this.Text = "InstallationManager";
88      this.tableLayoutPanel.ResumeLayout(false);
89      this.tableLayoutPanel.PerformLayout();
90      this.ResumeLayout(false);
91      this.PerformLayout();
92
93    }
94
95    #endregion
96
97    private System.Windows.Forms.StatusStrip statusStrip;
98    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
99    private System.Windows.Forms.TextBox detailsTextBox;
100    private System.Windows.Forms.ListView pluginsListView;
101  }
102}
Note: See TracBrowser for help on using the repository browser.