Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserAdministrationDialog.Designer.cs @ 7635

Last change on this file since 7635 was 7635, checked in by ascheibe, 12 years ago

#1648 added admin views for displaying user groups

File size: 5.9 KB
Line 
1namespace HeuristicLab.Clients.Access.Administration {
2  partial class UserAdministrationDialog {
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 Windows Form 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.refreshableUserListView = new HeuristicLab.Clients.Access.Administration.RefreshableUserListView();
27      this.mainTabControl = new System.Windows.Forms.TabControl();
28      this.usersTabPage = new System.Windows.Forms.TabPage();
29      this.UserGroupsTabPage = new System.Windows.Forms.TabPage();
30      this.refreshableUserGroupListView = new HeuristicLab.Clients.Access.Administration.RefreshableUserGroupListView();
31      this.mainTabControl.SuspendLayout();
32      this.usersTabPage.SuspendLayout();
33      this.UserGroupsTabPage.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // refreshableUserListView
37      //
38      this.refreshableUserListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39            | System.Windows.Forms.AnchorStyles.Left)
40            | System.Windows.Forms.AnchorStyles.Right)));
41      this.refreshableUserListView.Caption = "View";
42      this.refreshableUserListView.Content = null;
43      this.refreshableUserListView.Location = new System.Drawing.Point(6, 6);
44      this.refreshableUserListView.Name = "refreshableUserListView";
45      this.refreshableUserListView.ReadOnly = false;
46      this.refreshableUserListView.Size = new System.Drawing.Size(762, 364);
47      this.refreshableUserListView.TabIndex = 0;
48      //
49      // mainTabControl
50      //
51      this.mainTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
52            | System.Windows.Forms.AnchorStyles.Left)
53            | System.Windows.Forms.AnchorStyles.Right)));
54      this.mainTabControl.Controls.Add(this.usersTabPage);
55      this.mainTabControl.Controls.Add(this.UserGroupsTabPage);
56      this.mainTabControl.Location = new System.Drawing.Point(12, 12);
57      this.mainTabControl.Name = "mainTabControl";
58      this.mainTabControl.SelectedIndex = 0;
59      this.mainTabControl.Size = new System.Drawing.Size(782, 402);
60      this.mainTabControl.TabIndex = 1;
61      //
62      // usersTabPage
63      //
64      this.usersTabPage.Controls.Add(this.refreshableUserListView);
65      this.usersTabPage.Location = new System.Drawing.Point(4, 22);
66      this.usersTabPage.Name = "usersTabPage";
67      this.usersTabPage.Padding = new System.Windows.Forms.Padding(3);
68      this.usersTabPage.Size = new System.Drawing.Size(774, 376);
69      this.usersTabPage.TabIndex = 0;
70      this.usersTabPage.Text = "Users";
71      this.usersTabPage.UseVisualStyleBackColor = true;
72      //
73      // UserGroupsTabPage
74      //
75      this.UserGroupsTabPage.Controls.Add(this.refreshableUserGroupListView);
76      this.UserGroupsTabPage.Location = new System.Drawing.Point(4, 22);
77      this.UserGroupsTabPage.Name = "UserGroupsTabPage";
78      this.UserGroupsTabPage.Padding = new System.Windows.Forms.Padding(3);
79      this.UserGroupsTabPage.Size = new System.Drawing.Size(774, 376);
80      this.UserGroupsTabPage.TabIndex = 1;
81      this.UserGroupsTabPage.Text = "Groups";
82      this.UserGroupsTabPage.UseVisualStyleBackColor = true;
83      //
84      // refreshableUserGroupListView
85      //
86      this.refreshableUserGroupListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
87            | System.Windows.Forms.AnchorStyles.Left)
88            | System.Windows.Forms.AnchorStyles.Right)));
89      this.refreshableUserGroupListView.Caption = "View";
90      this.refreshableUserGroupListView.Content = null;
91      this.refreshableUserGroupListView.Location = new System.Drawing.Point(6, 6);
92      this.refreshableUserGroupListView.Name = "refreshableUserGroupListView";
93      this.refreshableUserGroupListView.ReadOnly = false;
94      this.refreshableUserGroupListView.Size = new System.Drawing.Size(762, 364);
95      this.refreshableUserGroupListView.TabIndex = 0;
96      //
97      // UserAdministrationDialog
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.ClientSize = new System.Drawing.Size(806, 426);
102      this.Controls.Add(this.mainTabControl);
103      this.MaximizeBox = false;
104      this.MinimizeBox = false;
105      this.Name = "UserAdministrationDialog";
106      this.ShowIcon = false;
107      this.ShowInTaskbar = false;
108      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
109      this.Text = "User Administration";
110      this.Load += new System.EventHandler(this.UserAdministrationDialog_Load);
111      this.mainTabControl.ResumeLayout(false);
112      this.usersTabPage.ResumeLayout(false);
113      this.UserGroupsTabPage.ResumeLayout(false);
114      this.ResumeLayout(false);
115
116    }
117
118    #endregion
119
120    private RefreshableUserListView refreshableUserListView;
121    private System.Windows.Forms.TabControl mainTabControl;
122    private System.Windows.Forms.TabPage usersTabPage;
123    private System.Windows.Forms.TabPage UserGroupsTabPage;
124    private RefreshableUserGroupListView refreshableUserGroupListView;
125  }
126}
Note: See TracBrowser for help on using the repository browser.