1 | namespace HeuristicLab.Clients.Access.Views {
|
---|
2 | partial class LightweightUserGroupSelectionView {
|
---|
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 | this.components = new System.ComponentModel.Container();
|
---|
27 | System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Groups", System.Windows.Forms.HorizontalAlignment.Left);
|
---|
28 | System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Users", System.Windows.Forms.HorizontalAlignment.Left);
|
---|
29 | this.itemsListView = new System.Windows.Forms.ListView();
|
---|
30 | this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
31 | this.detailsColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
32 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
33 | this.SuspendLayout();
|
---|
34 | //
|
---|
35 | // itemsListView
|
---|
36 | //
|
---|
37 | this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
38 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
39 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
40 | this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
41 | this.nameColumnHeader,
|
---|
42 | this.detailsColumnHeader});
|
---|
43 | this.itemsListView.FullRowSelect = true;
|
---|
44 | listViewGroup1.Header = "Groups";
|
---|
45 | listViewGroup1.Name = "groupsListViewGroup";
|
---|
46 | listViewGroup2.Header = "Users";
|
---|
47 | listViewGroup2.Name = "usersListViewGroup";
|
---|
48 | this.itemsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
|
---|
49 | listViewGroup1,
|
---|
50 | listViewGroup2});
|
---|
51 | this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
---|
52 | this.itemsListView.HideSelection = false;
|
---|
53 | this.itemsListView.Location = new System.Drawing.Point(3, 3);
|
---|
54 | this.itemsListView.Name = "itemsListView";
|
---|
55 | this.itemsListView.Size = new System.Drawing.Size(446, 308);
|
---|
56 | this.itemsListView.SmallImageList = this.imageList;
|
---|
57 | this.itemsListView.TabIndex = 0;
|
---|
58 | this.itemsListView.UseCompatibleStateImageBehavior = false;
|
---|
59 | this.itemsListView.View = System.Windows.Forms.View.Details;
|
---|
60 | //
|
---|
61 | // nameColumnHeader
|
---|
62 | //
|
---|
63 | this.nameColumnHeader.Text = "Name";
|
---|
64 | //
|
---|
65 | // detailsColumnHeader
|
---|
66 | //
|
---|
67 | this.detailsColumnHeader.Text = "Details";
|
---|
68 | //
|
---|
69 | // imageList
|
---|
70 | //
|
---|
71 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
72 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
73 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
74 | //
|
---|
75 | // LightweightUserGroupSelectionView
|
---|
76 | //
|
---|
77 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
78 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
79 | this.Controls.Add(this.itemsListView);
|
---|
80 | this.Name = "LightweightUserGroupSelectionView";
|
---|
81 | this.Size = new System.Drawing.Size(452, 314);
|
---|
82 | this.Load += new System.EventHandler(this.LightweightUserGroupSelectionView_Load);
|
---|
83 | this.ResumeLayout(false);
|
---|
84 |
|
---|
85 | }
|
---|
86 |
|
---|
87 | #endregion
|
---|
88 |
|
---|
89 | private System.Windows.Forms.ListView itemsListView;
|
---|
90 | private System.Windows.Forms.ImageList imageList;
|
---|
91 | private System.Windows.Forms.ColumnHeader nameColumnHeader;
|
---|
92 | private System.Windows.Forms.ColumnHeader detailsColumnHeader;
|
---|
93 | }
|
---|
94 | }
|
---|