예제 #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));
 }