using System.Windows; using Aitex.Core.Account; using Aitex.Core.Util; namespace MECF.Framework.UI.Core.Accounts { /// /// Interaction logic for MyAccount.xaml /// public partial class MyAccount : Window { public MyAccount(Account account) { InitializeComponent(); _account = account; DataContext = account; var roles = AccountClient.Instance.Service.GetAllRoles(); foreach (var item in roles) { comboBoxGroup.Items.Add(item); } comboBoxGroup.SelectedItem = account.Role; } public MyAccount() { InitializeComponent(); _account = AccountClient.Instance.CurrentUser; DataContext = _account; var roles = AccountClient.Instance.Service.GetAllRoles(); foreach (var item in roles) { comboBoxGroup.Items.Add(item); } comboBoxGroup.SelectedItem = _account.Role; } Account _account; /// /// Save current configuration /// /// /// private void button_Save_Click(object sender, RoutedEventArgs e) { Account account = DataContext as Account; if (account != null) { if (string.IsNullOrEmpty((string)comboBoxGroup.SelectedValue)) { MessageBox.Show(Application.Current.Resources["GlobalLableAccountViewRoleBeSelected"].ToString(), Application.Current.Resources["GlobalLableAccountViewMsgTitle"].ToString(), MessageBoxButton.OK, MessageBoxImage.Warning); return; } account.Role = (string)comboBoxGroup.SelectedValue; var ret = AccountClient.Instance.Service.UpdateAccount(account); if (ret.ActSucc) { MessageBox.Show(string.Format(Application.Current.Resources["GlobalLableAccountViewMsgUpdateOk"].ToString(), _account.AccountId), Application.Current.Resources["GlobalLableAccountViewMsgTitle"].ToString(), MessageBoxButton.OK, MessageBoxImage.Information); } else { MessageBox.Show(string.Format(Application.Current.Resources["GlobalLableAccountViewMsgUpdateFailed"].ToString(), _account.AccountId, ret.Description), Application.Current.Resources["GlobalLableAccountViewMsgTitle"].ToString(), MessageBoxButton.OK, MessageBoxImage.Warning); } } } private void button_ChangePwd_Click(object sender, RoutedEventArgs e) { Account account = DataContext as Account; if (account != null) { UserPwdChangeView view = new UserPwdChangeView(_account.AccountId) { Owner = Application.Current.MainWindow }; view.ShowDialog(); } } private void Button_Click(object sender, RoutedEventArgs e) { this.Close(); } } }