[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 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 |
|
---|
| 22 | namespace HeuristicLab.Clients.Access.Administration {
|
---|
[8042] | 23 | partial class UserView {
|
---|
| 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.label1 = new System.Windows.Forms.Label();
|
---|
| 48 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 49 | this.userNameTextBox = new System.Windows.Forms.TextBox();
|
---|
| 50 | this.fullNameTextBox = new System.Windows.Forms.TextBox();
|
---|
| 51 | this.label3 = new System.Windows.Forms.Label();
|
---|
| 52 | this.label4 = new System.Windows.Forms.Label();
|
---|
| 53 | this.emailTextBox = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.idTextBox = new System.Windows.Forms.TextBox();
|
---|
| 55 | this.label5 = new System.Windows.Forms.Label();
|
---|
| 56 | this.label6 = new System.Windows.Forms.Label();
|
---|
| 57 | this.lastActivityTextBox = new System.Windows.Forms.TextBox();
|
---|
| 58 | this.lastLoginTextBox = new System.Windows.Forms.TextBox();
|
---|
| 59 | this.resetPasswordButton = new System.Windows.Forms.Button();
|
---|
| 60 | this.refreshableRoleSelectionListView = new HeuristicLab.Clients.Access.Administration.RefreshableRoleSelectionListView();
|
---|
| 61 | this.SuspendLayout();
|
---|
| 62 | //
|
---|
| 63 | // label1
|
---|
| 64 | //
|
---|
| 65 | this.label1.AutoSize = true;
|
---|
| 66 | this.label1.Location = new System.Drawing.Point(3, 6);
|
---|
| 67 | this.label1.Name = "label1";
|
---|
| 68 | this.label1.Size = new System.Drawing.Size(63, 13);
|
---|
| 69 | this.label1.TabIndex = 0;
|
---|
| 70 | this.label1.Text = "User Name:";
|
---|
| 71 | //
|
---|
| 72 | // label2
|
---|
| 73 | //
|
---|
| 74 | this.label2.AutoSize = true;
|
---|
| 75 | this.label2.Location = new System.Drawing.Point(3, 32);
|
---|
| 76 | this.label2.Name = "label2";
|
---|
| 77 | this.label2.Size = new System.Drawing.Size(57, 13);
|
---|
| 78 | this.label2.TabIndex = 1;
|
---|
| 79 | this.label2.Text = "Full Name:";
|
---|
| 80 | //
|
---|
| 81 | // userNameTextBox
|
---|
| 82 | //
|
---|
| 83 | this.userNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 84 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 85 | this.userNameTextBox.Location = new System.Drawing.Point(76, 3);
|
---|
| 86 | this.userNameTextBox.Name = "userNameTextBox";
|
---|
| 87 | this.userNameTextBox.Size = new System.Drawing.Size(746, 20);
|
---|
| 88 | this.userNameTextBox.TabIndex = 2;
|
---|
| 89 | this.userNameTextBox.TextChanged += new System.EventHandler(this.userNameTextBox_TextChanged);
|
---|
| 90 | //
|
---|
| 91 | // fullNameTextBox
|
---|
| 92 | //
|
---|
| 93 | this.fullNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 94 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 95 | this.fullNameTextBox.Location = new System.Drawing.Point(76, 29);
|
---|
| 96 | this.fullNameTextBox.Name = "fullNameTextBox";
|
---|
| 97 | this.fullNameTextBox.Size = new System.Drawing.Size(746, 20);
|
---|
| 98 | this.fullNameTextBox.TabIndex = 3;
|
---|
| 99 | this.fullNameTextBox.TextChanged += new System.EventHandler(this.fullNameTextBox_TextChanged);
|
---|
| 100 | //
|
---|
| 101 | // label3
|
---|
| 102 | //
|
---|
| 103 | this.label3.AutoSize = true;
|
---|
| 104 | this.label3.Location = new System.Drawing.Point(3, 58);
|
---|
| 105 | this.label3.Name = "label3";
|
---|
| 106 | this.label3.Size = new System.Drawing.Size(39, 13);
|
---|
| 107 | this.label3.TabIndex = 4;
|
---|
| 108 | this.label3.Text = "E-Mail:";
|
---|
| 109 | //
|
---|
| 110 | // label4
|
---|
| 111 | //
|
---|
| 112 | this.label4.AutoSize = true;
|
---|
| 113 | this.label4.Location = new System.Drawing.Point(5, 84);
|
---|
| 114 | this.label4.Name = "label4";
|
---|
| 115 | this.label4.Size = new System.Drawing.Size(19, 13);
|
---|
| 116 | this.label4.TabIndex = 5;
|
---|
| 117 | this.label4.Text = "Id:";
|
---|
| 118 | //
|
---|
| 119 | // emailTextBox
|
---|
| 120 | //
|
---|
| 121 | this.emailTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 122 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 123 | this.emailTextBox.Location = new System.Drawing.Point(76, 55);
|
---|
| 124 | this.emailTextBox.Name = "emailTextBox";
|
---|
| 125 | this.emailTextBox.Size = new System.Drawing.Size(746, 20);
|
---|
| 126 | this.emailTextBox.TabIndex = 6;
|
---|
| 127 | this.emailTextBox.TextChanged += new System.EventHandler(this.emailTextBox_TextChanged);
|
---|
| 128 | //
|
---|
| 129 | // idTextBox
|
---|
| 130 | //
|
---|
| 131 | this.idTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 132 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 133 | this.idTextBox.Enabled = false;
|
---|
| 134 | this.idTextBox.Location = new System.Drawing.Point(76, 81);
|
---|
| 135 | this.idTextBox.Name = "idTextBox";
|
---|
| 136 | this.idTextBox.Size = new System.Drawing.Size(746, 20);
|
---|
| 137 | this.idTextBox.TabIndex = 7;
|
---|
| 138 | //
|
---|
| 139 | // label5
|
---|
| 140 | //
|
---|
| 141 | this.label5.AutoSize = true;
|
---|
| 142 | this.label5.Location = new System.Drawing.Point(3, 110);
|
---|
| 143 | this.label5.Name = "label5";
|
---|
| 144 | this.label5.Size = new System.Drawing.Size(67, 13);
|
---|
| 145 | this.label5.TabIndex = 8;
|
---|
| 146 | this.label5.Text = "Last Activity:";
|
---|
| 147 | //
|
---|
| 148 | // label6
|
---|
| 149 | //
|
---|
| 150 | this.label6.AutoSize = true;
|
---|
| 151 | this.label6.Location = new System.Drawing.Point(3, 136);
|
---|
| 152 | this.label6.Name = "label6";
|
---|
| 153 | this.label6.Size = new System.Drawing.Size(59, 13);
|
---|
| 154 | this.label6.TabIndex = 9;
|
---|
| 155 | this.label6.Text = "Last Login:";
|
---|
| 156 | //
|
---|
| 157 | // lastActivityTextBox
|
---|
| 158 | //
|
---|
| 159 | this.lastActivityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 160 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 161 | this.lastActivityTextBox.Enabled = false;
|
---|
| 162 | this.lastActivityTextBox.Location = new System.Drawing.Point(76, 107);
|
---|
| 163 | this.lastActivityTextBox.Name = "lastActivityTextBox";
|
---|
| 164 | this.lastActivityTextBox.Size = new System.Drawing.Size(746, 20);
|
---|
| 165 | this.lastActivityTextBox.TabIndex = 10;
|
---|
| 166 | //
|
---|
| 167 | // lastLoginTextBox
|
---|
| 168 | //
|
---|
| 169 | this.lastLoginTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 170 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 171 | this.lastLoginTextBox.Enabled = false;
|
---|
| 172 | this.lastLoginTextBox.Location = new System.Drawing.Point(76, 133);
|
---|
| 173 | this.lastLoginTextBox.Name = "lastLoginTextBox";
|
---|
| 174 | this.lastLoginTextBox.Size = new System.Drawing.Size(746, 20);
|
---|
| 175 | this.lastLoginTextBox.TabIndex = 11;
|
---|
| 176 | //
|
---|
| 177 | // resetPasswordButton
|
---|
| 178 | //
|
---|
| 179 | this.resetPasswordButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 180 | this.resetPasswordButton.Location = new System.Drawing.Point(8, 417);
|
---|
| 181 | this.resetPasswordButton.Name = "resetPasswordButton";
|
---|
| 182 | this.resetPasswordButton.Size = new System.Drawing.Size(96, 23);
|
---|
| 183 | this.resetPasswordButton.TabIndex = 12;
|
---|
| 184 | this.resetPasswordButton.Text = "Reset Password";
|
---|
| 185 | this.resetPasswordButton.UseVisualStyleBackColor = true;
|
---|
| 186 | this.resetPasswordButton.Click += new System.EventHandler(this.resetPasswordButton_Click);
|
---|
| 187 | //
|
---|
| 188 | // refreshableRoleSelectionListView
|
---|
| 189 | //
|
---|
| 190 | this.refreshableRoleSelectionListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 191 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 192 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 193 | this.refreshableRoleSelectionListView.Caption = "View";
|
---|
| 194 | this.refreshableRoleSelectionListView.Content = null;
|
---|
| 195 | this.refreshableRoleSelectionListView.CurrentUser = null;
|
---|
| 196 | this.refreshableRoleSelectionListView.Location = new System.Drawing.Point(8, 159);
|
---|
| 197 | this.refreshableRoleSelectionListView.Name = "refreshableRoleSelectionListView";
|
---|
| 198 | this.refreshableRoleSelectionListView.ReadOnly = false;
|
---|
| 199 | this.refreshableRoleSelectionListView.Size = new System.Drawing.Size(814, 252);
|
---|
| 200 | this.refreshableRoleSelectionListView.TabIndex = 13;
|
---|
| 201 | //
|
---|
| 202 | // UserView
|
---|
| 203 | //
|
---|
| 204 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 205 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 206 | this.Controls.Add(this.refreshableRoleSelectionListView);
|
---|
| 207 | this.Controls.Add(this.resetPasswordButton);
|
---|
| 208 | this.Controls.Add(this.lastLoginTextBox);
|
---|
| 209 | this.Controls.Add(this.lastActivityTextBox);
|
---|
| 210 | this.Controls.Add(this.label6);
|
---|
| 211 | this.Controls.Add(this.label5);
|
---|
| 212 | this.Controls.Add(this.idTextBox);
|
---|
| 213 | this.Controls.Add(this.emailTextBox);
|
---|
| 214 | this.Controls.Add(this.label4);
|
---|
| 215 | this.Controls.Add(this.label3);
|
---|
| 216 | this.Controls.Add(this.fullNameTextBox);
|
---|
| 217 | this.Controls.Add(this.userNameTextBox);
|
---|
| 218 | this.Controls.Add(this.label2);
|
---|
| 219 | this.Controls.Add(this.label1);
|
---|
| 220 | this.Name = "UserView";
|
---|
| 221 | this.Size = new System.Drawing.Size(825, 447);
|
---|
| 222 | this.ResumeLayout(false);
|
---|
| 223 | this.PerformLayout();
|
---|
| 224 |
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | #endregion
|
---|
| 228 |
|
---|
| 229 | private System.Windows.Forms.Label label1;
|
---|
| 230 | private System.Windows.Forms.Label label2;
|
---|
| 231 | private System.Windows.Forms.TextBox userNameTextBox;
|
---|
| 232 | private System.Windows.Forms.TextBox fullNameTextBox;
|
---|
| 233 | private System.Windows.Forms.Label label3;
|
---|
| 234 | private System.Windows.Forms.Label label4;
|
---|
| 235 | private System.Windows.Forms.TextBox emailTextBox;
|
---|
| 236 | private System.Windows.Forms.TextBox idTextBox;
|
---|
| 237 | private System.Windows.Forms.Label label5;
|
---|
| 238 | private System.Windows.Forms.Label label6;
|
---|
| 239 | private System.Windows.Forms.TextBox lastActivityTextBox;
|
---|
| 240 | private System.Windows.Forms.TextBox lastLoginTextBox;
|
---|
| 241 | private System.Windows.Forms.Button resetPasswordButton;
|
---|
| 242 | private RefreshableRoleSelectionListView refreshableRoleSelectionListView;
|
---|
| 243 | }
|
---|
| 244 | }
|
---|