- Timestamp:
- 01/02/18 13:51:29 (7 years ago)
- Location:
- branches/HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserGroupView.cs
r15422 r15567 68 68 } 69 69 70 protected override void SetEnabledStateOfControls() { 71 base.SetEnabledStateOfControls(); 72 bool enabled = Content != null && !Locked; 73 groupNameTextBox.ReadOnly = enabled; 74 } 75 70 76 private void groupNameTextBox_TextChanged(object sender, EventArgs e) { 71 77 if (Content != null && Content.Name != groupNameTextBox.Text) -
branches/HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserView.cs
r14185 r15567 64 64 protected override void SetEnabledStateOfControls() { 65 65 base.SetEnabledStateOfControls(); 66 bool enabled = Content != null && !Locked; 67 68 userNameTextBox.ReadOnly = enabled; 69 fullNameTextBox.ReadOnly = enabled; 70 emailTextBox.ReadOnly = enabled; 71 66 72 if (Content == null) { 67 73 resetPasswordButton.Enabled = false;
Note: See TracChangeset
for help on using the changeset viewer.