Exemple #1
0
 public static void Show()
 {
     ConsoleMenu.Show
     (
         "Mot de passe", Yellow, Black, Red, MenuItems.ToArray()
     );
 }
Exemple #2
0
 static void Show()
 {
     // ConsoleMenu.ExitChar = 'Z';
     ConsoleMenu.Show
     (
         "Arbre Binaire", Yellow, Black, Red, MenuItems.ToArray()
     );
 }
 public static void Show()
 {
     ConsoleMenu.Show
     (
         $"Arbre Binaire --- {Program.Nom}", Green, Black, Red, Magenta, null, null
         , MenuItems.ToArray()
     );;
 }
Exemple #4
0
 static void Show()
 {
     // ConsoleMenu.ExitChar = 'Z';
     ConsoleMenu.Show
     (
         "Algorithmes", Yellow, Black, Red, MenuItems.ToArray()
     );
 }
Exemple #5
0
        public static void Show(bool avecBenchmark, params int[] statLevels)
        {
            NoBenchmark = !avecBenchmark;
            StatLevels  = statLevels;

            ConsoleMenu.Show
            (
                $"{ConsoleMenu.CurrentMenuSelectionTitle} --- {Program.Nom}"
                , Green, Black, Red, Magenta, null, null
                , MenuItems.ToArray()
            );
        }