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

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

            return(b);
        }
Esempio n. 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);
        }
Esempio n. 4
0
 public static MenuBase CreateOkCancel(string headerCaption, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, "OK", "Cancel", yesAction, noAction);
     return b;
 }
Esempio n. 5
0
 public static MenuBase Create(string headerCaption, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, "Yes", "No", yesAction, noAction);
     return b;
 }
Esempio n. 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;
 }