using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; using System.Dynamic; using Aitex.Core.Account; namespace Aitex.Triton160.UI.Views { /// /// Interaction logic for UserAccountEdit.xaml /// public partial class UserAccountEdit : Window { public UserAccountEdit(Account account) { InitializeComponent(); _account = account; DataContext = account; var roles = Triton160UiSystem.Instance.WCF.Account.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 (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 = Triton160UiSystem.Instance.WCF.Account.UpdateAccount(account); if (ret.ActSucc) { DialogResult = true; Close(); 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); } } } }