- Timestamp:
- 01/05/18 15:10:38 (7 years ago)
- Location:
- branches/HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserGroupView.Designer.cs
r14185 r15576 85 85 this.idTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 86 86 | System.Windows.Forms.AnchorStyles.Right))); 87 this.idTextBox. Enabled = false;87 this.idTextBox.ReadOnly = true; 88 88 this.idTextBox.Location = new System.Drawing.Point(79, 29); 89 89 this.idTextBox.Name = "idTextBox"; -
branches/HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserGroupView.cs
r15567 r15576 71 71 base.SetEnabledStateOfControls(); 72 72 bool enabled = Content != null && !Locked; 73 groupNameTextBox.ReadOnly = enabled; 73 groupNameTextBox.ReadOnly = !enabled; 74 idTextBox.ReadOnly = !enabled; 75 storeButton.Enabled = enabled; 76 refreshableLightweightUserView.Enabled = enabled; 77 //refreshableLightweightUserView.Locked = !enabled; 78 //refreshableLightweightUserView.ReadOnly = !enabled; 74 79 } 75 80 -
branches/HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserView.cs
r15567 r15576 66 66 bool enabled = Content != null && !Locked; 67 67 68 userNameTextBox.ReadOnly = enabled;69 fullNameTextBox.ReadOnly = enabled;70 emailTextBox.ReadOnly = enabled;68 userNameTextBox.ReadOnly = !enabled; 69 fullNameTextBox.ReadOnly = !enabled; 70 emailTextBox.ReadOnly = !enabled; 71 71 72 72 if (Content == null) {
Note: See TracChangeset
for help on using the changeset viewer.