Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/InstalledPluginsView.Designer.cs @ 13338

Last change on this file since 13338 was 13338, checked in by gkronber, 8 years ago

#2522:

  • moved UI components out of HeuristicLab.PluginInfrastructure -> HeuristicLab.PluginInfrastructure.UI
  • moved ErrorDialog to HeuristicLab.MainForm.WindowsForms
  • moved ErrorHandling (for building an error message string) to HeuristicLab.Common
  • Changed exception handlers in Views to use MainForm.ShowError()
  • Changed usages for ErrorDialog in non-UI components to throw exceptions instead.
File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.UI {
23  partial class InstalledPluginsView {
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 Component 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.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("Active Plugins", System.Windows.Forms.HorizontalAlignment.Left);
49      System.Windows.Forms.ListViewGroup listViewGroup4 = new System.Windows.Forms.ListViewGroup("Disabled Plugins", System.Windows.Forms.HorizontalAlignment.Left);
50      this.localPluginsListView = new MultiSelectListView();
51      this.nameHeader = new System.Windows.Forms.ColumnHeader();
52      this.versionHeader = new System.Windows.Forms.ColumnHeader();
53      this.descriptionHeader = new System.Windows.Forms.ColumnHeader();
54      this.pluginImageList = new System.Windows.Forms.ImageList(this.components);
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.SuspendLayout();
57      //
58      // localPluginsListView
59      //
60      this.localPluginsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
61                  | System.Windows.Forms.AnchorStyles.Left)
62                  | System.Windows.Forms.AnchorStyles.Right)));
63      this.localPluginsListView.CheckBoxes = true;
64      this.localPluginsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
65            this.nameHeader,
66            this.versionHeader,
67            this.descriptionHeader});
68      listViewGroup3.Header = "Active Plugins";
69      listViewGroup3.Name = "activePluginsGroup";
70      listViewGroup4.Header = "Disabled Plugins";
71      listViewGroup4.Name = "disabledPluginsGroup";
72      this.localPluginsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
73            listViewGroup3,
74            listViewGroup4});
75      this.localPluginsListView.Location = new System.Drawing.Point(0, 0);
76      this.localPluginsListView.Name = "localPluginsListView";
77      this.localPluginsListView.Size = new System.Drawing.Size(539, 477);
78      this.localPluginsListView.SmallImageList = this.pluginImageList;
79      this.localPluginsListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
80      this.localPluginsListView.SuppressItemCheckedEvents = false;
81      this.localPluginsListView.TabIndex = 13;
82      this.localPluginsListView.UseCompatibleStateImageBehavior = false;
83      this.localPluginsListView.View = System.Windows.Forms.View.Details;
84      this.localPluginsListView.ItemActivate += new System.EventHandler(this.localPluginsListView_ItemActivate);
85      //
86      // nameHeader
87      //
88      this.nameHeader.Text = "Name";
89      this.nameHeader.Width = 199;
90      //
91      // versionHeader
92      //
93      this.versionHeader.Text = "Version";
94      this.versionHeader.Width = 84;
95      //
96      // descriptionHeader
97      //
98      this.descriptionHeader.Text = "Description";
99      this.descriptionHeader.Width = 245;
100      //
101      // pluginImageList
102      //
103      this.pluginImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
104      this.pluginImageList.ImageSize = new System.Drawing.Size(16, 16);
105      this.pluginImageList.TransparentColor = System.Drawing.Color.Transparent;
106      //
107      // LocalPluginsView
108      //
109      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
110      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
111      this.Controls.Add(this.localPluginsListView);
112      this.Name = "LocalPluginsView";
113      this.Size = new System.Drawing.Size(539, 508);
114      this.ResumeLayout(false);
115
116    }
117
118    #endregion
119
120    private MultiSelectListView localPluginsListView;
121    private System.Windows.Forms.ColumnHeader nameHeader;
122    private System.Windows.Forms.ColumnHeader versionHeader;
123    private System.Windows.Forms.ColumnHeader descriptionHeader;
124    private System.Windows.Forms.ToolTip toolTip;
125    private System.Windows.Forms.ImageList pluginImageList;
126    // private LocalPluginManagerView localPluginManagerView;
127  }
128}
Note: See TracBrowser for help on using the repository browser.