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

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

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