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

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

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