Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/PluginListView.Designer.cs @ 2802

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

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 5.9 KB
Line 
1namespace HeuristicLab.DeploymentService.AdminClient {
2  partial class PluginListView {
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      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Local plugins", System.Windows.Forms.HorizontalAlignment.Left);
27      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("All plugins", System.Windows.Forms.HorizontalAlignment.Left);
28      System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("Disabled plugins", System.Windows.Forms.HorizontalAlignment.Left);
29      this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
30      this.listView = new System.Windows.Forms.ListView();
31      this.nameHeader = new System.Windows.Forms.ColumnHeader();
32      this.Version = new System.Windows.Forms.ColumnHeader();
33      this.detailsTextBox = new System.Windows.Forms.TextBox();
34      this.uploadButton = new System.Windows.Forms.Button();
35      this.tableLayoutPanel.SuspendLayout();
36      this.SuspendLayout();
37      //
38      // tableLayoutPanel
39      //
40      this.tableLayoutPanel.ColumnCount = 1;
41      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
42      this.tableLayoutPanel.Controls.Add(this.listView, 0, 0);
43      this.tableLayoutPanel.Controls.Add(this.detailsTextBox, 0, 1);
44      this.tableLayoutPanel.Controls.Add(this.uploadButton, 0, 2);
45      this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
46      this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
47      this.tableLayoutPanel.Name = "tableLayoutPanel";
48      this.tableLayoutPanel.RowCount = 3;
49      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 63.42105F));
50      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 36.57895F));
51      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 123F));
52      this.tableLayoutPanel.Size = new System.Drawing.Size(400, 380);
53      this.tableLayoutPanel.TabIndex = 0;
54      //
55      // listView
56      //
57      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
58            this.nameHeader,
59            this.Version});
60      this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
61      listViewGroup1.Header = "Local plugins";
62      listViewGroup1.Name = "Local plugins";
63      listViewGroup2.Header = "All plugins";
64      listViewGroup2.Name = "All plugins";
65      listViewGroup3.Header = "Disabled plugins";
66      listViewGroup3.Name = "Disabled plugins";
67      this.listView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
68            listViewGroup1,
69            listViewGroup2,
70            listViewGroup3});
71      this.listView.Location = new System.Drawing.Point(3, 3);
72      this.listView.Name = "listView";
73      this.listView.Size = new System.Drawing.Size(394, 156);
74      this.listView.TabIndex = 0;
75      this.listView.UseCompatibleStateImageBehavior = false;
76      this.listView.View = System.Windows.Forms.View.Details;
77      this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
78      //
79      // nameHeader
80      //
81      this.nameHeader.Text = "Name";
82      this.nameHeader.Width = 300;
83      //
84      // Version
85      //
86      this.Version.Text = "Version";
87      this.Version.Width = 100;
88      //
89      // detailsTextBox
90      //
91      this.detailsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
92      this.detailsTextBox.Location = new System.Drawing.Point(3, 165);
93      this.detailsTextBox.Multiline = true;
94      this.detailsTextBox.Name = "detailsTextBox";
95      this.detailsTextBox.ReadOnly = true;
96      this.detailsTextBox.Size = new System.Drawing.Size(394, 88);
97      this.detailsTextBox.TabIndex = 1;
98      //
99      // uploadButton
100      //
101      this.uploadButton.Location = new System.Drawing.Point(3, 259);
102      this.uploadButton.Name = "uploadButton";
103      this.uploadButton.Size = new System.Drawing.Size(75, 23);
104      this.uploadButton.TabIndex = 2;
105      this.uploadButton.Text = "Upload";
106      this.uploadButton.UseVisualStyleBackColor = true;
107      this.uploadButton.Click += new System.EventHandler(this.uploadButton_Click);
108      //
109      // PluginListView
110      //
111      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
112      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
113      this.Controls.Add(this.tableLayoutPanel);
114      this.Name = "PluginListView";
115      this.Size = new System.Drawing.Size(400, 380);
116      this.tableLayoutPanel.ResumeLayout(false);
117      this.tableLayoutPanel.PerformLayout();
118      this.ResumeLayout(false);
119
120    }
121
122    #endregion
123
124    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
125    private System.Windows.Forms.ListView listView;
126    private System.Windows.Forms.TextBox detailsTextBox;
127    private System.Windows.Forms.ColumnHeader nameHeader;
128    private System.Windows.Forms.ColumnHeader Version;
129    private System.Windows.Forms.Button uploadButton;
130  }
131}
Note: See TracBrowser for help on using the repository browser.