Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/12 16:16:18 (12 years ago)
Author:
ascheibe
Message:

#1648 added admin views for displaying user groups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserAdministrationDialog.Designer.cs

    r7614 r7635  
    2525    private void InitializeComponent() {
    2626      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();
    2734      this.SuspendLayout();
    2835      //
    2936      // refreshableUserListView
    3037      //
    31       this.refreshableUserListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    32                   | System.Windows.Forms.AnchorStyles.Left)
    33                   | System.Windows.Forms.AnchorStyles.Right)));
     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)));
    3441      this.refreshableUserListView.Caption = "View";
    3542      this.refreshableUserListView.Content = null;
    36       this.refreshableUserListView.Location = new System.Drawing.Point(12, 12);
     43      this.refreshableUserListView.Location = new System.Drawing.Point(6, 6);
    3744      this.refreshableUserListView.Name = "refreshableUserListView";
    3845      this.refreshableUserListView.ReadOnly = false;
    39       this.refreshableUserListView.Size = new System.Drawing.Size(782, 402);
     46      this.refreshableUserListView.Size = new System.Drawing.Size(762, 364);
    4047      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;
    4196      //
    4297      // UserAdministrationDialog
     
    45100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    46101      this.ClientSize = new System.Drawing.Size(806, 426);
    47       this.Controls.Add(this.refreshableUserListView);
     102      this.Controls.Add(this.mainTabControl);
    48103      this.MaximizeBox = false;
    49104      this.MinimizeBox = false;
     
    54109      this.Text = "User Administration";
    55110      this.Load += new System.EventHandler(this.UserAdministrationDialog_Load);
     111      this.mainTabControl.ResumeLayout(false);
     112      this.usersTabPage.ResumeLayout(false);
     113      this.UserGroupsTabPage.ResumeLayout(false);
    56114      this.ResumeLayout(false);
    57115
     
    61119
    62120    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;
    63125  }
    64126}
Note: See TracChangeset for help on using the changeset viewer.