Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Clients.Access.Views/3.3/UserViews/LightweightUserGroupSelectionView.Designer.cs @ 14186

Last change on this file since 14186 was 14186, checked in by swagner, 8 years ago

#2526: Updated year of copyrights in license headers

File size: 5.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Clients.Access.Views {
23  partial class LightweightUserGroupSelectionView {
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 listViewGroup1 = new System.Windows.Forms.ListViewGroup("Groups", System.Windows.Forms.HorizontalAlignment.Left);
49      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Users", System.Windows.Forms.HorizontalAlignment.Left);
50      this.itemsListView = new System.Windows.Forms.ListView();
51      this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
52      this.detailsColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
53      this.imageList = new System.Windows.Forms.ImageList(this.components);
54      this.SuspendLayout();
55      //
56      // itemsListView
57      //
58      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59                  | System.Windows.Forms.AnchorStyles.Left)
60                  | System.Windows.Forms.AnchorStyles.Right)));
61      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
62            this.nameColumnHeader,
63            this.detailsColumnHeader});
64      this.itemsListView.FullRowSelect = true;
65      listViewGroup1.Header = "Groups";
66      listViewGroup1.Name = "groupsListViewGroup";
67      listViewGroup2.Header = "Users";
68      listViewGroup2.Name = "usersListViewGroup";
69      this.itemsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
70            listViewGroup1,
71            listViewGroup2});
72      this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
73      this.itemsListView.HideSelection = false;
74      this.itemsListView.Location = new System.Drawing.Point(3, 3);
75      this.itemsListView.Name = "itemsListView";
76      this.itemsListView.Size = new System.Drawing.Size(446, 308);
77      this.itemsListView.SmallImageList = this.imageList;
78      this.itemsListView.TabIndex = 0;
79      this.itemsListView.UseCompatibleStateImageBehavior = false;
80      this.itemsListView.View = System.Windows.Forms.View.Details;
81      //
82      // nameColumnHeader
83      //
84      this.nameColumnHeader.Text = "Name";
85      //
86      // detailsColumnHeader
87      //
88      this.detailsColumnHeader.Text = "Details";
89      //
90      // imageList
91      //
92      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
93      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
94      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
95      //
96      // LightweightUserGroupSelectionView
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100      this.Controls.Add(this.itemsListView);
101      this.Name = "LightweightUserGroupSelectionView";
102      this.Size = new System.Drawing.Size(452, 314);
103      this.Load += new System.EventHandler(this.LightweightUserGroupSelectionView_Load);
104      this.ResumeLayout(false);
105
106    }
107
108    #endregion
109
110    private System.Windows.Forms.ListView itemsListView;
111    private System.Windows.Forms.ImageList imageList;
112    private System.Windows.Forms.ColumnHeader nameColumnHeader;
113    private System.Windows.Forms.ColumnHeader detailsColumnHeader;
114  }
115}
Note: See TracBrowser for help on using the repository browser.