Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.PluginInfrastructure/3.3/Starter/StarterForm.Designer.cs @ 17181

Last change on this file since 17181 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 10.3 KB
RevLine 
[2]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2]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
[2527]22namespace HeuristicLab.PluginInfrastructure.Starter {
[2507]23  partial class StarterForm {
[2]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) {
[2504]34      if (disposing && (components != null)) {
[2]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();
[3732]48      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Applications", System.Windows.Forms.HorizontalAlignment.Left);
49      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Plugin Management", System.Windows.Forms.HorizontalAlignment.Left);
[3748]50      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StarterForm));
[2]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);
[3573]58      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
[3600]59      this.showLargeIconsButton = new System.Windows.Forms.RadioButton();
[3573]60      this.showDetailsButton = new System.Windows.Forms.RadioButton();
[3736]61      this.aboutButton = new System.Windows.Forms.Button();
[2]62      this.SuspendLayout();
63      //
64      // startButton
65      //
66      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67      this.startButton.Enabled = false;
[3736]68      this.startButton.Location = new System.Drawing.Point(498, 511);
[2]69      this.startButton.Name = "startButton";
70      this.startButton.Size = new System.Drawing.Size(75, 23);
71      this.startButton.TabIndex = 1;
[3573]72      this.startButton.Text = "&Start";
73      this.toolTip.SetToolTip(this.startButton, "Start Selected Application");
[2]74      this.startButton.UseVisualStyleBackColor = true;
75      this.startButton.Click += new System.EventHandler(this.applicationsListView_ItemActivate);
76      //
[3748]77      // largeImageList
78      //
79      this.largeImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
80      this.largeImageList.ImageSize = new System.Drawing.Size(32, 32);
81      this.largeImageList.TransparentColor = System.Drawing.Color.Transparent;
82      //
[2]83      // applicationsListView
84      //
85      this.applicationsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86                  | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.applicationsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
89            this.nameColumnHeader,
90            this.versionColumnHeader,
91            this.descriptionColumnHeader});
[3732]92      listViewGroup1.Header = "Applications";
93      listViewGroup1.Name = "Applications";
94      listViewGroup2.Header = "Plugin Management";
95      listViewGroup2.Name = "Plugin Management";
[2]96      this.applicationsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
[3732]97            listViewGroup1,
98            listViewGroup2});
[2]99      this.applicationsListView.LargeImageList = this.largeImageList;
100      this.applicationsListView.Location = new System.Drawing.Point(12, 12);
101      this.applicationsListView.MultiSelect = false;
102      this.applicationsListView.Name = "applicationsListView";
103      this.applicationsListView.ShowItemToolTips = true;
[3600]104      this.applicationsListView.Size = new System.Drawing.Size(642, 493);
[2]105      this.applicationsListView.SmallImageList = this.smallImageList;
[3600]106      this.applicationsListView.TabIndex = 0;
[2]107      this.applicationsListView.UseCompatibleStateImageBehavior = false;
108      this.applicationsListView.ItemActivate += new System.EventHandler(this.applicationsListView_ItemActivate);
[3573]109      this.applicationsListView.SelectedIndexChanged += new System.EventHandler(this.applicationsListView_SelectedIndexChanged);
[2]110      //
111      // nameColumnHeader
112      //
113      this.nameColumnHeader.Text = "Name";
114      this.nameColumnHeader.Width = 125;
115      //
116      // versionColumnHeader
117      //
118      this.versionColumnHeader.Text = "Version";
119      //
120      // descriptionColumnHeader
121      //
122      this.descriptionColumnHeader.Text = "Description";
123      this.descriptionColumnHeader.Width = 453;
124      //
[3748]125      // smallImageList
126      //
127      this.smallImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
128      this.smallImageList.ImageSize = new System.Drawing.Size(16, 16);
129      this.smallImageList.TransparentColor = System.Drawing.Color.Transparent;
130      //
[3600]131      // showLargeIconsButton
[2]132      //
[3600]133      this.showLargeIconsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
134      this.showLargeIconsButton.Appearance = System.Windows.Forms.Appearance.Button;
135      this.showLargeIconsButton.Checked = true;
[3721]136      this.showLargeIconsButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.ShowIcons;
[3600]137      this.showLargeIconsButton.Location = new System.Drawing.Point(12, 511);
138      this.showLargeIconsButton.Name = "showLargeIconsButton";
139      this.showLargeIconsButton.Size = new System.Drawing.Size(23, 23);
140      this.showLargeIconsButton.TabIndex = 2;
[3732]141      this.showLargeIconsButton.TabStop = true;
[3600]142      this.toolTip.SetToolTip(this.showLargeIconsButton, "Show Large Icons");
143      this.showLargeIconsButton.UseVisualStyleBackColor = false;
144      this.showLargeIconsButton.Click += new System.EventHandler(this.largeIconsButton_Click);
[2]145      //
[3573]146      // showDetailsButton
[2]147      //
[3600]148      this.showDetailsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
[3573]149      this.showDetailsButton.Appearance = System.Windows.Forms.Appearance.Button;
[3721]150      this.showDetailsButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.ShowDetails;
[3600]151      this.showDetailsButton.Location = new System.Drawing.Point(41, 511);
[3573]152      this.showDetailsButton.Name = "showDetailsButton";
[3600]153      this.showDetailsButton.Size = new System.Drawing.Size(23, 23);
154      this.showDetailsButton.TabIndex = 3;
[3573]155      this.toolTip.SetToolTip(this.showDetailsButton, "Show Details");
[3600]156      this.showDetailsButton.UseVisualStyleBackColor = false;
[3573]157      this.showDetailsButton.Click += new System.EventHandler(this.detailsButton_Click);
[2]158      //
[3736]159      // aboutButton
160      //
161      this.aboutButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
162      this.aboutButton.Location = new System.Drawing.Point(579, 511);
163      this.aboutButton.Name = "aboutButton";
164      this.aboutButton.Size = new System.Drawing.Size(75, 23);
165      this.aboutButton.TabIndex = 4;
166      this.aboutButton.Text = "&About...";
167      this.aboutButton.UseVisualStyleBackColor = true;
168      this.aboutButton.Click += new System.EventHandler(this.aboutButton_Click);
169      //
[3112]170      // StarterForm
[2]171      //
172      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[7967]173      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[2]174      this.ClientSize = new System.Drawing.Size(666, 546);
[3736]175      this.Controls.Add(this.aboutButton);
[3600]176      this.Controls.Add(this.showDetailsButton);
177      this.Controls.Add(this.showLargeIconsButton);
[2]178      this.Controls.Add(this.applicationsListView);
179      this.Controls.Add(this.startButton);
[3749]180      this.Icon = HeuristicLab.PluginInfrastructure.Resources.HeuristicLab;
[3112]181      this.Name = "StarterForm";
[2]182      this.Text = "HeuristicLab Starter";
[8563]183      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.StarterForm_FormClosing);
[8748]184      this.Load += new System.EventHandler(this.StarterForm_Load);
[2]185      this.ResumeLayout(false);
186
187    }
188
189    #endregion
190
191    private System.Windows.Forms.Button startButton;
192    private System.Windows.Forms.ImageList largeImageList;
193    private System.Windows.Forms.ListView applicationsListView;
194    private System.Windows.Forms.ColumnHeader nameColumnHeader;
195    private System.Windows.Forms.ColumnHeader versionColumnHeader;
196    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
197    private System.Windows.Forms.ImageList smallImageList;
[3573]198    private System.Windows.Forms.ToolTip toolTip;
[3600]199    private System.Windows.Forms.RadioButton showLargeIconsButton;
[3573]200    private System.Windows.Forms.RadioButton showDetailsButton;
[3736]201    private System.Windows.Forms.Button aboutButton;
[2]202  }
203}
Note: See TracBrowser for help on using the repository browser.