Changeset 7635 for branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserAdministrationDialog.Designer.cs
- Timestamp:
- 03/19/12 16:16:18 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserAdministrationDialog.Designer.cs
r7614 r7635 25 25 private void InitializeComponent() { 26 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(); 27 34 this.SuspendLayout(); 28 35 // 29 36 // refreshableUserListView 30 37 // 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 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))); 34 41 this.refreshableUserListView.Caption = "View"; 35 42 this.refreshableUserListView.Content = null; 36 this.refreshableUserListView.Location = new System.Drawing.Point( 12, 12);43 this.refreshableUserListView.Location = new System.Drawing.Point(6, 6); 37 44 this.refreshableUserListView.Name = "refreshableUserListView"; 38 45 this.refreshableUserListView.ReadOnly = false; 39 this.refreshableUserListView.Size = new System.Drawing.Size(7 82, 402);46 this.refreshableUserListView.Size = new System.Drawing.Size(762, 364); 40 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; 41 96 // 42 97 // UserAdministrationDialog … … 45 100 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 46 101 this.ClientSize = new System.Drawing.Size(806, 426); 47 this.Controls.Add(this. refreshableUserListView);102 this.Controls.Add(this.mainTabControl); 48 103 this.MaximizeBox = false; 49 104 this.MinimizeBox = false; … … 54 109 this.Text = "User Administration"; 55 110 this.Load += new System.EventHandler(this.UserAdministrationDialog_Load); 111 this.mainTabControl.ResumeLayout(false); 112 this.usersTabPage.ResumeLayout(false); 113 this.UserGroupsTabPage.ResumeLayout(false); 56 114 this.ResumeLayout(false); 57 115 … … 61 119 62 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; 63 125 } 64 126 }
Note: See TracChangeset
for help on using the changeset viewer.