示例#1
0
 public virtual void ViewModel_NotifyViewModelParentHandler(object sender, NotifyEventArgs args)
 {
 }
示例#2
0
 protected void ShowSuccessMsg(NotifyEventArgs args)
 {
     ShowSuccessMsg(args.Content.Keys.First().ToString(), args.Content.Values.First().ToString());
 }
示例#3
0
 protected void ShowSuccessMsgWithSound(NotifyEventArgs args, BHTController bhtController)
 {
     bhtController.SoundOK();
     ShowSuccessMsg(args);
 }
示例#4
0
 protected void ShowErrorMsgWithSound(NotifyEventArgs args, BHTController bhtController)
 {
     bhtController.SoundWarning();
     ShowErrorMsg(args);
 }
示例#5
0
        protected bool ShowConfirmationMsg(NotifyEventArgs args)
        {
            var getResult = ShowConfirmationMsg(args.Content.Keys.First().ToString(), args.Content.Values.First().ToString());

            return(getResult);
        }
示例#6
0
 protected bool ShowConfirmationMsgWithSound(NotifyEventArgs args, BHTController bhtController)
 {
     bhtController.SoundConfirm();
     return(ShowConfirmationMsg(args));
 }