Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.Designer.cs @ 3721

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

Cleaned resources in plugin infrastructure. #994 (Clean up plugin infrastructure project)

File size: 9.6 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
21
22namespace HeuristicLab.PluginInfrastructure.Starter {
23  partial class StarterForm {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StarterForm));
49      System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("Applications", System.Windows.Forms.HorizontalAlignment.Left);
50      System.Windows.Forms.ListViewGroup listViewGroup4 = new System.Windows.Forms.ListViewGroup("Plugin Management", System.Windows.Forms.HorizontalAlignment.Left);
51      this.startButton = new System.Windows.Forms.Button();
52      this.largeImageList = new System.Windows.Forms.ImageList(this.components);
53      this.applicationsListView = new System.Windows.Forms.ListView();
54      this.nameColumnHeader = new System.Windows.Forms.ColumnHeader();
55      this.versionColumnHeader = new System.Windows.Forms.ColumnHeader();
56      this.descriptionColumnHeader = new System.Windows.Forms.ColumnHeader();
57      this.smallImageList = new System.Windows.Forms.ImageList(this.components);
58      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
59      this.showLargeIconsButton = new System.Windows.Forms.RadioButton();
60      this.showDetailsButton = new System.Windows.Forms.RadioButton();
61      this.SuspendLayout();
62      //
63      // startButton
64      //
65      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
66      this.startButton.Enabled = false;
67      this.startButton.Location = new System.Drawing.Point(579, 511);
68      this.startButton.Name = "startButton";
69      this.startButton.Size = new System.Drawing.Size(75, 23);
70      this.startButton.TabIndex = 1;
71      this.startButton.Text = "&Start";
72      this.toolTip.SetToolTip(this.startButton, "Start Selected Application");
73      this.startButton.UseVisualStyleBackColor = true;
74      this.startButton.Click += new System.EventHandler(this.applicationsListView_ItemActivate);
75      //
76      // largeImageList
77      //
78      this.largeImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("largeImageList.ImageStream")));
79      this.largeImageList.TransparentColor = System.Drawing.Color.Transparent;
80      this.largeImageList.Images.SetKeyName(0, "HeuristicLab.ico");
81      //
82      // applicationsListView
83      //
84      this.applicationsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
85                  | System.Windows.Forms.AnchorStyles.Left)
86                  | System.Windows.Forms.AnchorStyles.Right)));
87      this.applicationsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
88            this.nameColumnHeader,
89            this.versionColumnHeader,
90            this.descriptionColumnHeader});
91      listViewGroup3.Header = "Applications";
92      listViewGroup3.Name = "Applications";
93      listViewGroup4.Header = "Plugin Management";
94      listViewGroup4.Name = "Plugin Management";
95      this.applicationsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
96            listViewGroup3,
97            listViewGroup4});
98      this.applicationsListView.LargeImageList = this.largeImageList;
99      this.applicationsListView.Location = new System.Drawing.Point(12, 12);
100      this.applicationsListView.MultiSelect = false;
101      this.applicationsListView.Name = "applicationsListView";
102      this.applicationsListView.ShowItemToolTips = true;
103      this.applicationsListView.Size = new System.Drawing.Size(642, 493);
104      this.applicationsListView.SmallImageList = this.smallImageList;
105      this.applicationsListView.TabIndex = 0;
106      this.applicationsListView.UseCompatibleStateImageBehavior = false;
107      this.applicationsListView.ItemActivate += new System.EventHandler(this.applicationsListView_ItemActivate);
108      this.applicationsListView.SelectedIndexChanged += new System.EventHandler(this.applicationsListView_SelectedIndexChanged);
109      //
110      // nameColumnHeader
111      //
112      this.nameColumnHeader.Text = "Name";
113      this.nameColumnHeader.Width = 125;
114      //
115      // versionColumnHeader
116      //
117      this.versionColumnHeader.Text = "Version";
118      //
119      // descriptionColumnHeader
120      //
121      this.descriptionColumnHeader.Text = "Description";
122      this.descriptionColumnHeader.Width = 453;
123      //
124      // smallImageList
125      //
126      this.smallImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("smallImageList.ImageStream")));
127      this.smallImageList.TransparentColor = System.Drawing.Color.Transparent;
128      this.smallImageList.Images.SetKeyName(0, "HeuristicLab.ico");
129      //
130      // showLargeIconsButton
131      //
132      this.showLargeIconsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
133      this.showLargeIconsButton.Appearance = System.Windows.Forms.Appearance.Button;
134      this.showLargeIconsButton.Checked = true;
135      this.showLargeIconsButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.ShowIcons;
136      this.showLargeIconsButton.Location = new System.Drawing.Point(12, 511);
137      this.showLargeIconsButton.Name = "showLargeIconsButton";
138      this.showLargeIconsButton.Size = new System.Drawing.Size(23, 23);
139      this.showLargeIconsButton.TabIndex = 2;
140      this.toolTip.SetToolTip(this.showLargeIconsButton, "Show Large Icons");
141      this.showLargeIconsButton.UseVisualStyleBackColor = false;
142      this.showLargeIconsButton.Click += new System.EventHandler(this.largeIconsButton_Click);
143      //
144      // showDetailsButton
145      //
146      this.showDetailsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
147      this.showDetailsButton.Appearance = System.Windows.Forms.Appearance.Button;
148      this.showDetailsButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.ShowDetails;
149      this.showDetailsButton.Location = new System.Drawing.Point(41, 511);
150      this.showDetailsButton.Name = "showDetailsButton";
151      this.showDetailsButton.Size = new System.Drawing.Size(23, 23);
152      this.showDetailsButton.TabIndex = 3;
153      this.toolTip.SetToolTip(this.showDetailsButton, "Show Details");
154      this.showDetailsButton.UseVisualStyleBackColor = false;
155      this.showDetailsButton.Click += new System.EventHandler(this.detailsButton_Click);
156      //
157      // StarterForm
158      //
159      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
160      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
161      this.ClientSize = new System.Drawing.Size(666, 546);
162      this.Controls.Add(this.showDetailsButton);
163      this.Controls.Add(this.showLargeIconsButton);
164      this.Controls.Add(this.applicationsListView);
165      this.Controls.Add(this.startButton);
166      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
167      this.Name = "StarterForm";
168      this.Text = "HeuristicLab Starter";
169      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
170      this.ResumeLayout(false);
171
172    }
173
174    #endregion
175
176    private System.Windows.Forms.Button startButton;
177    private System.Windows.Forms.ImageList largeImageList;
178    private System.Windows.Forms.ListView applicationsListView;
179    private System.Windows.Forms.ColumnHeader nameColumnHeader;
180    private System.Windows.Forms.ColumnHeader versionColumnHeader;
181    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
182    private System.Windows.Forms.ImageList smallImageList;
183    private System.Windows.Forms.ToolTip toolTip;
184    private System.Windows.Forms.RadioButton showLargeIconsButton;
185    private System.Windows.Forms.RadioButton showDetailsButton;
186  }
187}
Note: See TracBrowser for help on using the repository browser.