Dreamine.MVVM.Interfaces 1.0.7
Dreamine.MVVM.Interfaces 공용 계약과 추상화를 제공합니다.
로딩중...
검색중...
일치하는것 없음
IDialogService.cs
이 파일의 문서화 페이지로 가기
1using System.Threading.Tasks;
2
4{
13 public interface IDialogService
14 {
39 void ShowMessage(string message, string title = "");
40
65 void ShowError(string message, string title = "Error");
66
99 bool Confirm(string message, string title = "Confirm");
100
133 Task ShowMessageAsync(string message, string title = "");
134
167 Task<bool> ConfirmAsync(string message, string title = "Confirm");
168 }
169}
bool Confirm(string message, string title="Confirm")
void ShowError(string message, string title="Error")
void ShowMessage(string message, string title="")
Task ShowMessageAsync(string message, string title="")
Task< bool > ConfirmAsync(string message, string title="Confirm")