Пример #1
0
 /// <summary>
 /// Show an native alert dialog.
 /// </summary>
 /// <param name="param">must have yesButton, ignore neutralButton when have notnoButton.</param>
 public static void ShowAlert(string title, string message, string yesButton, string noButton = null, OnAlertComplate onButtonPress = null)
 {
     Init();
     api.ShowAlert(title, message, yesButton, noButton, onButtonPress);
 }
Пример #2
0
        /// <summary>
        /// Show an native alert dialog.
        /// </summary>
        /// <param name="title">The title of alert dialog.</param>
        /// <param name="message">The message of alert dialog.</param>
        /// <param name="yesButton">The yes button of alert dialog.</param>
        /// <param name="noButton">The no button of alert dialog.</param>
        /// <param name="onButtonPress">The callback delegate when press any button.</param>
        public virtual void ShowAlert(string title, string message, string yesButton, string noButton = null, OnAlertComplate onButtonPress = null)
        {
            AlertParams param = new AlertParams();

            param.title         = title;
            param.message       = message;
            param.yesButton     = yesButton;
            param.noButton      = noButton;
            param.onButtonPress = onButtonPress;
            ShowAlert(param);
        }
 public override void ShowAlert(string title, string message, string yesButton, string noButton = null, OnAlertComplate onButtonPress = null)
 {
     CSharpUtil.PrintInvokeMethod();
 }