Example #1
0
        async Task <bool> IConfirm.ConfirmAsync(string pFormatString, params object[] ParamArray)
        {
            var option = new UIDialogOption()
            {
                Title = "Confirmation", Message = string.Format(pFormatString, ParamArray)
            };

            var ret = await bls.ConfirmAsync(option);

            return(ret == true);
        }
Example #2
0
 public override Type TypeGetUIDialogPrompt(UIDialogOption option)
 {
     return(typeof(CustomizeUI.UIDialogPrompt));
 }
Example #3
0
 public override Type TypeGetUIDialogConfirm(UIDialogOption option)
 {
     return(typeof(CustomizeUI.UIDialogConfirm));
 }