| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 | using System.Windows;using Aitex.Core.Account;using Aitex.Core.Util;namespace MECF.Framework.UI.Core.Accounts{    /// <summary>    /// Interaction logic for MyAccount.xaml    /// </summary>    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;        /// <summary>        /// Save current configuration        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        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();        }    }}
 |