728x90
728x170
// OK,Dialog팝업
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.SetTitle("확인");
alert.SetMessage("저장하시겠습니까?");
alert.SetPositiveButton("확인", SaveEvent);
alert.SetNegativeButton("취소", (senderAlert, args) => {});
Dialog dialog = alert.Create();
dialog.Show();
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.SetTitle("확인");
alert.SetMessage("저장하시겠습니까?");
alert.SetPositiveButton("확인", SaveEvent);
alert.SetNegativeButton("취소", (senderAlert, args) => {});
Dialog dialog = alert.Create();
dialog.Show();
private void SaveEvent(object sender, DialogClickEventArgs args)
{
}
// 단순 Dialog
public static void OpenDialogAction(Context context, string title, string content)
{
Dialog dlg = new Dialog(context);
TextView text = new TextView(context);
text.Text = content;
dlg.SetContentView(text);
dlg.SetTitle(title);
dlg.Show();
}
728x90
그리드형
'C# > Xamarin Maui' 카테고리의 다른 글
(Xamarin) mms 처리 (0) | 2017.04.13 |
---|---|
(Xamarin) Xamarin with SQLite (0) | 2017.04.13 |
(Xamarin) "obj\Debug\android\bin\packaged_resources" 파일이 없습니다 (0) | 2017.04.13 |
(Xamarin) 화면에 바로 나타나는 키보드 창 안나오게 하기 (0) | 2017.04.13 |
(Xamarin) Xamarin 시작하기 (0) | 2017.04.13 |