Changeset 16117 for trunk/HeuristicLab.Clients.Access.Views/3.3/UserViews
- Timestamp:
- 08/30/18 11:32:56 (6 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 6 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Clients.Access.Views
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Clients.Access.Views/3.3/UserViews/LightweightUserInformationView.cs
r15583 r16117 65 65 } 66 66 67 protected override void SetEnabledStateOfControls() { 68 base.SetEnabledStateOfControls(); 69 bool enabled = Content != null && !Locked; 70 //userNameTextBox.ReadOnly = !enabled; 71 fullNameTextBox.ReadOnly = !enabled; 72 emailTextBox.ReadOnly = !enabled; 73 //rolesListView.Enabled = enabled; 74 //groupsListView.Enabled = enabled; 75 changePasswordButton.Enabled = enabled; 76 } 77 67 78 private void changePasswordButton_Click(object sender, System.EventArgs e) { 68 79 using (ChangePasswordDialog dialog = new ChangePasswordDialog()) { -
trunk/HeuristicLab.Clients.Access.Views/3.3/UserViews/LightweightUserView.cs
r15583 r16117 59 59 base.SetEnabledStateOfControls(); 60 60 this.showDetailsCheckBox.Enabled = false; 61 bool enabled = Content != null && !Locked; 62 addButton.Enabled = enabled; 63 removeButton.Enabled = enabled; 64 moveDownButton.Enabled = enabled; 65 moveUpButton.Enabled = enabled; 61 66 } 62 67 -
trunk/HeuristicLab.Clients.Access.Views/3.3/UserViews/RefreshableView.Designer.cs
r15583 r16117 45 45 /// </summary> 46 46 private void InitializeComponent() { 47 components = new System.ComponentModel.Container(); 47 48 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RefreshableView)); 48 49 this.refreshButton = new System.Windows.Forms.Button(); 50 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 49 51 this.SuspendLayout(); 50 52 // … … 56 58 this.refreshButton.Size = new System.Drawing.Size(24, 24); 57 59 this.refreshButton.TabIndex = 1; 60 this.toolTip.SetToolTip(this.refreshButton, "Refresh data"); 58 61 this.refreshButton.UseVisualStyleBackColor = true; 59 62 this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click); … … 72 75 #endregion 73 76 77 private System.Windows.Forms.ToolTip toolTip; 74 78 protected System.Windows.Forms.Button refreshButton; 75 79 } -
trunk/HeuristicLab.Clients.Access.Views/3.3/UserViews/UserInformationDialog.Designer.cs
r15583 r16117 46 46 private void InitializeComponent() { 47 47 this.closeButton = new System.Windows.Forms.Button(); 48 this.refreshableLightweightUserInformationView = new HeuristicLab.Clients.Access.Views.RefreshableLightweight UserInformationView();48 this.refreshableLightweightUserInformationView = new HeuristicLab.Clients.Access.Views.RefreshableLightweightAccessClientInformationView(); 49 49 this.SuspendLayout(); 50 50 // … … 95 95 #endregion 96 96 97 private RefreshableLightweight UserInformationView refreshableLightweightUserInformationView;97 private RefreshableLightweightAccessClientInformationView refreshableLightweightUserInformationView; 98 98 private System.Windows.Forms.Button closeButton; 99 99 }
Note: See TracChangeset
for help on using the changeset viewer.