Ejemplo n.º 1
0
        public static bool ForBool(string Title, string Message)
        {
            AskUser AU = new AskUser(Title, Message, "Bool");

            AU.Ask();
            return(AU.BoolAnswer);
        }
Ejemplo n.º 2
0
        public static string ForString(string Title, string Message, string ImageFileLocation)
        {
            AskUser AU = new AskUser(Title, Message, ImageFileLocation, "String");

            AU.Ask();
            return(AU.StringAnswer);
        }
Ejemplo n.º 3
0
        public static List <int> ForList(string Title, string Message, string RBOne, string RBTwo, string Label, List <string> List)
        {
            AskUser AU = new AskUser(Title, Message, RBOne, RBTwo, Label, List, "List");

            AU.Ask();
            return(AU.ListAnswer);
        }
Ejemplo n.º 4
0
        public static string ForString(string Title, string Message)
        {
            AskUser AU = new AskUser(Title, Message, "String");

            AU.Ask();
            return(AU.StringAnswer);
        }
Ejemplo n.º 5
0
 public static string ForString(string Title, string Message, string ImageFileLocation)
 {
     AskUser AU = new AskUser(Title, Message, ImageFileLocation, "String");
     AU.Ask();
     return AU.StringAnswer;
 }
Ejemplo n.º 6
0
 public static string ForString(string Title, string Message)
 {
     AskUser AU = new AskUser(Title, Message, "String");
     AU.Ask();
     return AU.StringAnswer;
 }
Ejemplo n.º 7
0
 public static List<int> ForList(string Title, string Message, string RBOne, string RBTwo, string Label, List<string> List)
 {
     AskUser AU = new AskUser(Title, Message, RBOne, RBTwo, Label, List, "List");
     AU.Ask();
     return AU.ListAnswer;
 }
Ejemplo n.º 8
0
 public static bool ForBool(string Title, string Message)
 {
     AskUser AU = new AskUser(Title, Message, "Bool");
     AU.Ask();
     return AU.BoolAnswer;
 }