예제 #1
0
 private void InfoMsgBoxShow()
 {
     var result = MsgBoxWindowService.ShowInformation("정보 메시지 박스 입니다.");
 }
예제 #2
0
 private void QuestionMsgBoxShow()
 {
     var result = MsgBoxWindowService.ShowQuestion("질문 메시지 박스 입니다.");
 }
예제 #3
0
 private void WarningMsgBoxShow()
 {
     var result = MsgBoxWindowService.ShowWarning("경고 메시지 박스 입니다.");
 }
예제 #4
0
 private void ErrorMsgBoxShow()
 {
     var result = MsgBoxWindowService.ShowError("오류 메시지 박스 입니다.");
 }
예제 #5
0
 private void NormalMsgBoxShow()
 {
     var result = MsgBoxWindowService.Show("메시지 박스 호출에 이용되는 메서드 입니다.", "캡션", System.Windows.MessageBoxButton.OKCancel, System.Windows.MessageBoxImage.Asterisk);
 }