Exemple #1
0
        public static MenuBase CreateOkCancel(string headerCaption, Action yesAction, Action noAction)
        {
            var b = new RPGMessageBox(headerCaption, "OK", "Cancel", yesAction, noAction);

            return(b);
        }
Exemple #2
0
        public static MenuBase Create(string headerCaption, Action yesAction, Action noAction)
        {
            var b = new RPGMessageBox(headerCaption, "Yes", "No", yesAction, noAction);

            return(b);
        }
Exemple #3
0
        public static MenuBase Create(string headerCaption, string yesText, string noText, Action yesAction, Action noAction)
        {
            var b = new RPGMessageBox(headerCaption, yesText, noText, yesAction, noAction);

            return(b);
        }
Exemple #4
0
 public static MenuBase CreateOkCancel(string headerCaption, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, "OK", "Cancel", yesAction, noAction);
     return b;
 }
Exemple #5
0
 public static MenuBase Create(string headerCaption, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, "Yes", "No", yesAction, noAction);
     return b;
 }
Exemple #6
0
 public static MenuBase Create(string headerCaption, string yesText, string noText, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, yesText, noText, yesAction, noAction);
     return b;
 }