Changeset 6925 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobPermissionView.cs
- Timestamp:
- 10/13/11 20:45:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobPermissionView.cs
r6924 r6925 20 20 #endregion 21 21 22 using System.ComponentModel;23 22 using HeuristicLab.Clients.Hive.Views; 24 23 using HeuristicLab.MainForm; … … 62 61 } 63 62 64 #region Child Control Events65 66 private void usernameTextBox_Validating(object sender, CancelEventArgs e) {67 Content.GrantedUserName = usernameTextBox.Text;63 private void usernameTextBox_TextChanged(object sender, System.EventArgs e) { 64 if (Content != null) { 65 Content.GrantedUserName = usernameTextBox.Text; 66 } 68 67 } 69 68 70 private void permissionComboBox_Validating(object sender, CancelEventArgs e) { 71 Content.Permission = (Permission)permissionComboBox.SelectedItem; 69 private void permissionComboBox_SelectedValueChanged(object sender, System.EventArgs e) { 70 if (Content != null) { 71 Content.Permission = (Permission)permissionComboBox.SelectedItem; 72 } 72 73 } 73 #endregion74 74 } 75 75 }
Note: See TracChangeset
for help on using the changeset viewer.