Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/12 21:15:33 (12 years ago)
Author:
ascheibe
Message:

#1648 added CRUD operations for user groups in ui

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserView.cs

    r7614 r7637  
    4747      }
    4848    }
     49
     50    private void fullNameTextBox_TextChanged(object sender, System.EventArgs e) {
     51      if (Content.FullName != fullNameTextBox.Text)
     52        Content.FullName = fullNameTextBox.Text;
     53    }
     54
     55    private void userNameTextBox_TextChanged(object sender, System.EventArgs e) {
     56      if (Content.UserName != userNameTextBox.Text)
     57        Content.UserName = userNameTextBox.Text;
     58    }
    4959  }
    5060}
Note: See TracChangeset for help on using the changeset viewer.